Added auth middleware.

This commit is contained in:
mikestefanello 2021-12-12 17:04:11 -05:00
parent 25e5119dd5
commit 9986ca627d
6 changed files with 75 additions and 13 deletions

5
context/context.go Normal file
View file

@ -0,0 +1,5 @@
package context
const (
AuthenticatedUserKey = "auth_user"
)