rating-orama/core/cmd/routes.go
2025-01-28 21:59:53 +01:00

14 lines
221 B
Go

package main
import (
"github.com/gofiber/fiber/v2"
"github.com/zepyrshut/rating-orama/internal/handlers"
)
func router(h *handlers.Handlers, r *fiber.App) {
r.Get("/", h.GetIndex)
r.Get("/tvshow", h.GetTVShow)
}