initial commit 2
This commit is contained in:
15
server/router/healthroute/router.go
Normal file
15
server/router/healthroute/router.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package healthroute
|
||||
|
||||
import (
|
||||
"github.com/labstack/echo"
|
||||
)
|
||||
|
||||
const (
|
||||
rootRoute = "/"
|
||||
)
|
||||
|
||||
func Register(r *echo.Group) {
|
||||
ctrl := controllerInstance()
|
||||
|
||||
r.GET(rootRoute, ctrl.handle)
|
||||
}
|
||||
Reference in New Issue
Block a user