authorizer/server/router/router.go

13 lines
174 B
Go
Raw Normal View History

2021-06-28 16:16:21 +00:00
package router
import (
"yauth/handler"
"github.com/gofiber/fiber/v2"
)
// SetupRoutes setup router api
func SetupRoutes(app *fiber.App) {
app.Get("/", handler.Root)
}