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) }) }