diff --git a/internal/web_server/routes.go b/internal/web_server/routes.go index 3fb78b5..3172a06 100644 --- a/internal/web_server/routes.go +++ b/internal/web_server/routes.go @@ -177,8 +177,12 @@ func (a *App) initAppRoutes() { group.Get("/chapa/transfers/verify/:transfer_ref", h.VerifyTransfer) //Alea Play Virtual Game Routes - group.Get("/alea-games/launch", a.authMiddleware, h.LaunchAleaGame) - group.Post("/webhooks/alea-games", a.authMiddleware, h.HandleAleaCallback) + group.Get("/alea-play/launch", a.authMiddleware, h.LaunchAleaGame) + group.Post("/webhooks/alea-play", a.authMiddleware, h.HandleAleaCallback) + + //Veli Virtual Game Routes + group.Get("/veli-games/launch", a.authMiddleware, h.LaunchVeliGame) + group.Post("/webhooks/veli-games", a.authMiddleware, h.HandleVeliCallback) // Transactions /transactions a.fiber.Post("/transaction", a.authMiddleware, h.CreateTransaction)