package auth import "github.com/gin-gonic/gin" func Handler(r *gin.RouterGroup) { r.POST("/magic", RequestMagicLink) r.POST("/refresh", Refresh) }