Remove unnecessary type casting

This commit is contained in:
Deluan 2020-01-11 16:56:08 -05:00
parent 6c05930444
commit 8c1975b70f

4
app.go
View File

@ -86,9 +86,9 @@ func FileServer(r chi.Router, path string, root http.FileSystem) {
}
path += "*"
r.Get(path, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
r.Get(path, func(w http.ResponseWriter, r *http.Request) {
fs.ServeHTTP(w, r)
}))
})
}
func InjectLogger(next http.Handler) http.Handler {