mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
17 lines
407 B
Go
17 lines
407 B
Go
package repports
|
|
|
|
import (
|
|
controller "gitlab.com/mbugroup/lti-api.git/internal/modules/repports/controllers"
|
|
repport "gitlab.com/mbugroup/lti-api.git/internal/modules/repports/services"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func RepportRoutes(v1 fiber.Router, s repport.RepportService) {
|
|
ctrl := controller.NewRepportController(s)
|
|
|
|
route := v1.Group("/repports")
|
|
|
|
route.Get("expense", ctrl.GetExpense)
|
|
}
|