21 lines
485 B
Go
21 lines
485 B
Go
package visitroute
|
|
|
|
import (
|
|
"bitbucket.org/nemt/nemt-portal-api/application/applicationservice"
|
|
"bitbucket.org/nemt/nemt-portal-api/infra/config"
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
const (
|
|
rootRoute = "/"
|
|
idRoute = "/:visit_uuid"
|
|
)
|
|
|
|
// Register registers the routes in the echo group
|
|
func Register(r *echo.Group, cfg *config.Config, svc *applicationservice.Service) {
|
|
ctrl := controllerInstance(svc, cfg)
|
|
|
|
r.GET(rootRoute, ctrl.handleGetAll)
|
|
r.GET(idRoute, ctrl.handleGetByID)
|
|
}
|