Files

11 lines
202 B
Go
Raw Permalink Normal View History

2022-01-30 05:39:57 +01:00
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)
2022-03-21 01:37:16 +01:00
r.GET("/verify", Verify)
2022-01-30 05:39:57 +01:00
}