old routes no longer supported

master
Alex 2021-12-27 15:34:13 +01:00
parent 6c9a54179a
commit 4e9f367371
1 changed files with 0 additions and 10 deletions

View File

@ -19,14 +19,4 @@ func SetupWebRoutes(app *fiber.App) {
mobileV1.Get("/:mobileWebCode", mobile.GetMobileWebToken)
// old routes
voiceApiV1 := app.Group("/voice/v1")
voiceApiV1.Get("/:voiceWebCode", voice.GetVoiceWebToken)
mobileApiV1 := app.Group("/mobile/v1")
mobileApiV1.Get("/:mobileWebCode", mobile.GetMobileWebToken)
}