misso/routers/consent.go

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)
}