diff options
Diffstat (limited to 'service/http/handler.go')
-rw-r--r-- | service/http/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/handler.go b/service/http/handler.go index 0124a2a4..a4cb6406 100644 --- a/service/http/handler.go +++ b/service/http/handler.go @@ -48,7 +48,7 @@ func (h *Handler) Listen(l func(event int, ctx interface{})) { h.lsn = l } -// Handle serve using PSR-7 requests passed to underlying application. Attempts to serve static files first if enabled. +// middleware serve using PSR-7 requests passed to underlying application. Attempts to serve static files first if enabled. func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { // validating request size if h.cfg.MaxRequest != 0 { |