rating-orama/core/cmd/routes.go
2024-11-25 16:10:58 +01:00

13 lines
197 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("/tvshow", h.GetTVShow)
}