This commit is contained in:
Lakhan Samani
2021-06-28 21:46:21 +05:30
parent f07dd95f37
commit 9250257d9e
6 changed files with 69 additions and 0 deletions

12
server/router/router.go Normal file
View File

@@ -0,0 +1,12 @@
package router
import (
"yauth/handler"
"github.com/gofiber/fiber/v2"
)
// SetupRoutes setup router api
func SetupRoutes(app *fiber.App) {
app.Get("/", handler.Root)
}