MIF_E31222379_BE/router/setup_routes.go.go

13 lines
213 B
Go

package router
import (
"github.com/gofiber/fiber/v2"
"github.com/pahmiudahgede/senggoldong/presentation"
)
func SetupRoutes(app *fiber.App) {
api := app.Group("/apirijikid")
presentation.AuthRouter(api)
}