本文整理匯總了Golang中github.com/gamescores/gin.RouterGroup類的典型用法代碼示例。如果您正苦於以下問題:Golang RouterGroup類的具體用法?Golang RouterGroup怎麽用?Golang RouterGroup使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了RouterGroup類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: CreateRoutes
func (gs GameService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
games := parentRoute.Group("/leagues/:leagueId/games")
games.GET("", gs.getGames)
games.POST("", mustBeAuthenticated(), gs.createGame)
games.GET("/:gameId", gs.getGame)
games.POST("/:gameId", mustBeAuthenticated(), gs.updateGame)
}
示例2: CreateRoutes
func (cds contextDefinitionService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
contextRoute := parentRoute.Group("/context")
contextRoute.GET("/prepare", mustBeAuthenticated(), cds.prepareNewContext)
contextRoute.GET("/checkid/:id", mustBeAuthenticated(), cds.checkID)
contextRoute.POST("", mustBeAuthenticated(), cds.saveContext)
}
示例3: CreateRoutes
func (ls LeagueService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
leagues := parentRoute.Group("/leagues")
leagues.GET("", ls.getLeagues)
leagues.POST("", mustBeAuthenticated(), ls.createLeague)
leagues.GET("/:leagueId", ls.getLeague)
leagues.POST("/:leagueId", mustBeAuthenticated(), ls.updateLeague)
}
示例4: CreateRoutes
func (ps PlayerService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
players := parentRoute.Group("/players")
players.GET("", ps.getPlayers)
players.POST("", mustBeAuthenticated(), ps.createPlayer)
players.GET("/:playerId", ps.getPlayer)
players.POST("/:playerId", mustBeAuthenticated(), ps.updatePlayer)
}
示例5: CreateRoutes
func (as AdminService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
adminRoute := parentRoute.Group("/admin")
importRoute := adminRoute.Group("/import")
importRoute.GET("/preparescoreboardv1", mustBeAdmin(), as.prepareImportScoreBoardV1)
importRoute.POST("/scoreboardv1", mustBeAdmin(), as.importScoreBoardV1)
importRoute.GET("/scoreboardv1/status", mustBeAdmin(), as.importScoreBoardV1Status)
tasksRoute := rootRoute.Group("/tasks")
tasksRoute.POST("/import/scoreboardv1", as.doImportScoreBoardV1)
}
示例6: CreateRoutes
func (cds ContextDefinitionService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
parentRoute.GET("/context", cds.getContext)
}
示例7: CreateRoutes
func (us UserService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
parentRoute.GET("/me", us.getCurrentUser)
parentRoute.GET("/login", us.startLoginProcess)
}
示例8: CreateRoutes
func (us userService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) {
parentRoute.GET("/me", us.getCurrentUser)
}