go-zero/rest/httpx/router.go

11 lines
224 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)
2020-10-21 14:10:29 +08:00
SetNotAllowedHandler(handler http.Handler)
2020-07-31 12:13:30 +08:00
}