axiom/middleware/example.go
2025-06-30 23:29:22 -06:00

13 lines
275 B
Go

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