15 lines
348 B
Go
15 lines
348 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"backend/controllers"
|
||
|
"backend/middlewares"
|
||
|
|
||
|
"github.com/julienschmidt/httprouter"
|
||
|
)
|
||
|
|
||
|
func GameRoutes(router *httprouter.Router) {
|
||
|
router.POST("/game", controllers.PostGame)
|
||
|
router.GET("/games", middlewares.Authenticate(controllers.ListGames))
|
||
|
router.GET("/game/:id", middlewares.Authenticate(controllers.GetGame))
|
||
|
}
|