aboutsummaryrefslogtreecommitdiff
path: root/shared/commands.py
blob: fb3279dfc89d70e3061daeabd6bf306439dfe3ec (plain)
1
2
3
4
5
6
7
8
9
from aiogram.types import BotCommand as cmd, BotCommandScopeAllGroupChats as group

commands = {
    group(): [
        cmd('gen', 'Высрвть текст'),
        cmd('del', 'Смыть говно'),
        cmd('pin', 'Повесить говно на стенку'),
    ]
}