diff options
Diffstat (limited to '')
| -rw-r--r-- | internal/admin/middleware.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/admin/middleware.go b/internal/admin/middleware.go index 56d4797..60274ad 100644 --- a/internal/admin/middleware.go +++ b/internal/admin/middleware.go @@ -5,8 +5,8 @@ import ( "net/http" ) -// Admin middleware to handle requests to the admin repo. -func AdminHooks(adminSvc *Servicer, next http.Handler) http.Handler { +// Hooks middleware to handle requests to the admin repo. +func Hooks(adminSvc *Servicer, next http.Handler) http.Handler { return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) { log.Printf("stuffs about to reload %s", "now") next.ServeHTTP(rw, req) |