package routers import ( handler "server/modules/backend/handler/common" "github.com/gin-gonic/gin" ) func common(e *gin.Engine) { // e.GET("/common/goodsList", handler.GoodList) e.GET("/common/productList", handler.ProductList) // e.GET("/common/gameList", handler.GamesList) e.GET("/common/channelList", handler.ChannelList) e.GET("/common/userInfo", handler.UserInfo) // e.GET("/common/getGameInfo", handler.GameInfo) e.GET("/common/accountList", handler.AccountList) e.POST("/common/uploadOSS", handler.UploadOSS) }