2022-06-29 21:26:05 -04:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
2022-07-22 23:00:31 -04:00
|
|
|
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/controllers"
|
|
|
|
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/middlewares"
|
2022-06-29 21:26:05 -04:00
|
|
|
|
|
|
|
"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))
|
|
|
|
}
|