note for later

This commit is contained in:
SowinskiBraeden committed 2022-11-10 17:19:58 -08:00
1 parent 7dcff7adac
commit a3bb9b156a
1 file changed
+1
+1
View File
@@ -8,6 +8,7 @@ import (
func Middleware(next http.Handler) http.Handler { func Middleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Do Authentication stuff? // Do Authentication stuff?
// use r.URL to get url
next.ServeHTTP(w, r) next.ServeHTTP(w, r)
}) })
} }