A new SetNotFoundHandler() method for server.
This commit is contained in:
parent
8a4104c3d5
commit
a5f73e0d60
@ -53,6 +53,10 @@ func (s *HttpServer) ServeStatic(path string, fsys http.FileSystem) {
|
|||||||
s.router.ServeFiles(path, fsys)
|
s.router.ServeFiles(path, fsys)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *HttpServer) SetNotFoundHandler(handler http.HandlerFunc) {
|
||||||
|
s.router.NotFound = handler
|
||||||
|
}
|
||||||
|
|
||||||
// GetURLParam wrapper around underlying router for getting URL parameters.
|
// GetURLParam wrapper around underlying router for getting URL parameters.
|
||||||
func GetURLParam(r *http.Request, param string) string {
|
func GetURLParam(r *http.Request, param string) string {
|
||||||
return httprouter.ParamsFromContext(r.Context()).ByName(param)
|
return httprouter.ParamsFromContext(r.Context()).ByName(param)
|
||||||
|
Loading…
Reference in New Issue
Block a user