Files
History_Api/internal/routes/goongRoute.go
AzenKain 65f73a70f1
All checks were successful
Build and Release / release (push) Successful in 1m36s
feat: implement History API service with Swagger documentation and routing
2026-05-18 19:29:10 +07:00

14 lines
245 B
Go

package routes
import (
"history-api/internal/controllers"
"github.com/gofiber/fiber/v3"
)
func GoongRoutes(app *fiber.App, goongController controllers.GoongController) {
api := app.Group("/proxy")
api.Get("/*", goongController.Proxy)
}