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`) r.GET(`/accountcheck/:accname`) r.POST(`/login`) r.POST(`/forgot`) } }