13 lines
274 B
Go
13 lines
274 B
Go
package routes
|
|
|
|
import (
|
|
"history-api/internal/controllers"
|
|
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
func GoongRoutes(app *fiber.App, goongController controllers.GoongController) {
|
|
app.Get("/api/proxy/*", goongController.Proxy)
|
|
app.Get("/map/proxy/*", goongController.Proxy)
|
|
}
|