16 lines
184 B
Go
16 lines
184 B
Go
package healthroute
|
|
|
|
import (
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
const (
|
|
rootRoute = "/"
|
|
)
|
|
|
|
func Register(r *echo.Group) {
|
|
ctrl := controllerInstance()
|
|
|
|
r.GET(rootRoute, ctrl.handle)
|
|
}
|