package
0.0.0-20230510165201-69c548a4d919
Repository: https://github.com/acceleratera/go_app_udemy.git
Documentation: pkg.go.dev
# Functions
has access to request.
func WriteToConsole(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Println("HIT THE PAGE")
next.ServeHTTP(w, r)
})
}
*/ Nosurf adds CSRF protection to all POST requests.
SessionLoad loads and saves the session on every request.
# Variables
No description provided by the author