go-zero/rest/httpx/router.go
2020-07-31 12:13:30 +08:00

10 lines
180 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)
}