diff --git a/bot/start.ts b/bot/start.ts index 34ca46d4..59b77cde 100644 --- a/bot/start.ts +++ b/bot/start.ts @@ -251,6 +251,14 @@ const initialize = ( } }); + bot.command('ping', async (ctx: MainContext) => { + try { + await ctx.reply('pong'); + } catch (error) { + logger.error(error); + } + }); + bot.command( 'maintenance', superAdminMiddleware,