aboutsummaryrefslogtreecommitdiff
path: root/shared/commands.py
blob: 34f9dbb7eec6f6eedc12eb60d348d157581b33ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from aiogram.types import \
    BotCommand as cmd, \
    BotCommandScopeAllGroupChats as group, \
    BotCommandScopeAllPrivateChats as private

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