gofiber-study/controller/test/test.go
Shikong c5819c1ce6 添加 casbin model 定义
casbin 初始化 && 测试
2022-10-05 16:02:09 +08:00

9 lines
176 B
Go

package test
import "github.com/gofiber/fiber/v2"
func RegisterController(app *fiber.App) {
group := app.Group("/test")
group.Add(fiber.MethodGet, "/casbin", testCasbin)
}