Skip to content

Commit

Permalink
fixing route
Browse files Browse the repository at this point in the history
  • Loading branch information
ardan-bkennedy committed Oct 3, 2024
1 parent b9ced5c commit f86fbcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/engine/handlers/gamegrp/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func Routes(app *web.App, cfg Config) {

app.Handle(http.MethodGet, version, "/game/events", hdl.events, mid.Authenticate(cfg.Auth))
app.Handle(http.MethodGet, version, "/game/config", hdl.configuration)
app.Handle(http.MethodGet, version, "/game/usd2wei/{usd}", hdl.usd2Wei)
app.Handle(http.MethodGet, version, "/game/money/usd2wei/{usd}", hdl.usd2Wei)
app.Handle(http.MethodGet, version, "/game/new", hdl.newGame, mid.Authenticate(cfg.Auth))
app.Handle(http.MethodGet, version, "/game/balance", hdl.balance, mid.Authenticate(cfg.Auth))
app.Handle(http.MethodGet, version, "/game/tables", hdl.tables, mid.Authenticate(cfg.Auth))
Expand Down

0 comments on commit f86fbcf

Please sign in to comment.