feat: implement History API service with Swagger documentation and routing
All checks were successful
Build and Release / release (push) Successful in 1m36s
All checks were successful
Build and Release / release (push) Successful in 1m36s
This commit is contained in:
13
internal/routes/goongRoute.go
Normal file
13
internal/routes/goongRoute.go
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user