package customer import ( "shop-api/api/customer" "shop-api/api/sys" "github.com/gin-gonic/gin" ) func InitInfluencerOtherRouter(Router *gin.RouterGroup) { InOtherRouter := Router.Group("base") { InOtherRouter.POST("sms", customer.SendMessage) // 发送短信验证码 InOtherRouter.GET("brochure", sys.GetSysBrochure) // 隐私协议单页 InOtherRouter.GET("test", sys.Test2) } }