tgs / bot /handlers /info.py
AZILS's picture
Upload 119 files
054900e verified
raw
history blame contribute delete
333 Bytes
from aiogram import Router, types
from aiogram.filters import Command
from aiogram.utils.i18n import gettext as _
router = Router(name="info")
@router.message(Command(commands=["info", "help", "about"]))
async def info_handler(message: types.Message) -> None:
"""Information about bot."""
await message.answer(_("about"))