bigest part of the api done

This commit is contained in:
2022-01-30 05:39:57 +01:00
commit 7585a53baa
38 changed files with 11551 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package authentication
import "github.com/gin-gonic/gin"
func Setup(r *gin.RouterGroup) {
r.GET("/logout", Logout)
r.POST("/login", Login)
r.POST("/register", Register)
}