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.
18 lines
485 B
18 lines
485 B
|
1 year ago
|
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)
|
||
|
|
}
|