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
418 B
17 lines
418 B
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) //绑定邮箱
|
|
}
|
|
}
|
|
|