from aiogram.types import Message
from aiogram.filters.command import CommandObject


async def {{ command_name }}_command(
        message: Message,
        command: CommandObject
) -> None:
    pass
