19 lines
271 B
Go
19 lines
271 B
Go
|
|
package gin
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
//路由配置
|
||
|
|
func routerSetup(router *gin.Engine, rootpath *string) {
|
||
|
|
router.Use(gin.Recovery())
|
||
|
|
router.GET(`/health/check`)
|
||
|
|
|
||
|
|
r := router.Group(fmt.Sprintf("/%s", *rootpath))
|
||
|
|
{
|
||
|
|
r.POST(`/register`)
|
||
|
|
}
|
||
|
|
}
|