misso/routers/consent.go
Nya Candy 78dfce0131
init
2023-01-25 00:22:25 +08:00

12 lines
208 B
Go

package routers
import (
"github.com/gin-gonic/gin"
"misso/handlers/consent"
)
func Consent(rg *gin.RouterGroup) {
rg.GET("/consent", consent.ConsentCheck)
rg.POST("/consent", consent.ConsentConfirm)
}