Files
restxlsx/internal/api/middleware.go
T
2026-06-10 13:01:57 +02:00

11 lines
241 B
Go

package api
import "net/http"
func JSONContentType(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
next.ServeHTTP(w, r)
})
}