go-zero/rest/httpx/router.go

10 lines
180 B
Go
Raw Normal View History

2020-07-31 12:13:30 +08:00
package httpx
import "net/http"
type Router interface {
http.Handler
Handle(method string, path string, handler http.Handler) error
SetNotFoundHandler(handler http.Handler)
}