You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
399 B

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)
}
}