18 lines
364 B
Go
18 lines
364 B
Go
package placesroute
|
|
|
|
import (
|
|
"bitbucket.org/nemt/nemt-portal-api/application/applicationservice"
|
|
"bitbucket.org/nemt/nemt-portal-api/infra/config"
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
const (
|
|
rootRoute = ""
|
|
)
|
|
|
|
func Register(r *echo.Group, cfg *config.Config, svc *applicationservice.Service) {
|
|
ctrl := controllerInstance(cfg, svc)
|
|
|
|
r.GET(rootRoute, ctrl.handle)
|
|
}
|