package customer import ( "github.com/gin-gonic/gin" ) func InitInfluencerWalletRouter(Router *gin.RouterGroup) { InRouter := Router.Group("wallet") { InRouter.PUT("detail") //个人基本信息 } }