19 lines
423 B
Go
19 lines
423 B
Go
package selfregisterroute
|
|
|
|
import (
|
|
"bitbucket.org/nemt/nemt-portal-api/application/applicationservice"
|
|
"bitbucket.org/nemt/nemt-portal-api/infra/config"
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
const (
|
|
rootRoute = "/"
|
|
)
|
|
|
|
// Register registers the routes in the echo group
|
|
func Register(r *echo.Group, cfg *config.Config, svc *applicationservice.Service) {
|
|
ctrl := controllerInstance(svc, cfg)
|
|
|
|
r.POST(rootRoute, ctrl.handle)
|
|
}
|