1
0
Fork 0
forked from goffee/cup

start simple session manager

This commit is contained in:
Zeni Kim 2024-10-21 16:04:58 -05:00
parent 384f25d220
commit 23fd877a98
4 changed files with 219 additions and 0 deletions

View file

@ -41,4 +41,7 @@ func registerRoutes() {
controller.Get("/applogin", controllers.AppLogin, hooks.CheckSessionCookie)
controller.Post("/applogin", controllers.AppLogin, hooks.CheckSessionCookie)
controller.Get("/appsession", controllers.AppSession)
controller.Post("/appsession", controllers.AppSession)
}