gofiber-study/controller/test/test.go

9 lines
176 B
Go
Raw Normal View History

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