diff options
Diffstat (limited to 'forged/internal/incoming/web/handlers/index.go')
-rw-r--r-- | forged/internal/incoming/web/handlers/index.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forged/internal/incoming/web/handlers/index.go b/forged/internal/incoming/web/handlers/index.go index 773a0c6..1fd2954 100644 --- a/forged/internal/incoming/web/handlers/index.go +++ b/forged/internal/incoming/web/handlers/index.go @@ -10,6 +10,6 @@ type IndexHTTP struct{} func NewIndexHTTP() *IndexHTTP { return &IndexHTTP{} } -func (h *IndexHTTP) Index(w http.ResponseWriter, r *http.Request, _ wtypes.Vars) { +func (h *IndexHTTP) Index(w http.ResponseWriter, _ *http.Request, _ wtypes.Vars) { _, _ = w.Write([]byte("index: replace with template render")) } |