package customer import ( "shop-api/api" "github.com/gin-gonic/gin" ) func InitInfluencerUserRouter(Router *gin.RouterGroup) { InRouter := Router.Group("user") { InRouter.GET("detail") //个人基本信息 InRouter.PUT("detail") //个人基本信息 InRouter.POST("appeal", api.UserAppeal) //购买申诉 InRouter.PUT("email", api.BandUserEmail) //绑定邮箱 } }