You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is generally better to use http.Handler for middlewares instead of http.HandlerFunc. Handler is an interface which any router satisfies and helps to chain middlewares better.
I have this part on my code:
How to call
logHandler
for authboss route? I take this from authboss-sample but don't know where to apply the middleware chaining:or it's not possible without modifying the authboss codebase?
The text was updated successfully, but these errors were encountered: