Files
RenewCMS/api/middleware/auth.go
T

11 lines
258 B
Go

package middleware
import "net/http"
func JsonContentTypeMiddleware(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)
})
}