axiom/examples/fullstack/config/middleware.go

13 lines
271 B
Go

package config
import (
"log"
"net/http"
)
func AuthCheck(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("Sample Authenticated request: %s %s", r.Method, r.URL.Path)
next.ServeHTTP(w, r)
})
}