go-zero/rest/httpx/router.go
2020-10-21 14:10:36 +08:00

11 lines
224 B
Go

package httpx
import "net/http"
type Router interface {
http.Handler
Handle(method string, path string, handler http.Handler) error
SetNotFoundHandler(handler http.Handler)
SetNotAllowedHandler(handler http.Handler)
}