當前位置: 首頁>>代碼示例>>Golang>>正文


Golang RouterGroup.Group方法代碼示例

本文整理匯總了Golang中github.com/gamescores/gin.RouterGroup.Group方法的典型用法代碼示例。如果您正苦於以下問題:Golang RouterGroup.Group方法的具體用法?Golang RouterGroup.Group怎麽用?Golang RouterGroup.Group使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/gamescores/gin.RouterGroup的用法示例。


在下文中一共展示了RouterGroup.Group方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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)
}
開發者ID:gamescores,項目名稱:gamescores.info,代碼行數:7,代碼來源:gameservice.go

示例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)
}
開發者ID:gamescores,項目名稱:gamescores.info,代碼行數:7,代碼來源:contextdefinitionservice.go

示例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)
}
開發者ID:gamescores,項目名稱:gamescores.info,代碼行數:7,代碼來源:leagueservice.go

示例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)
}
開發者ID:gamescores,項目名稱:gamescores.info,代碼行數:7,代碼來源:playerservice.go

示例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)
}
開發者ID:gamescores,項目名稱:gamescores.info,代碼行數:11,代碼來源:adminservice.go


注:本文中的github.com/gamescores/gin.RouterGroup.Group方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。