diff options
Diffstat (limited to 'shared/commands.py')
| -rw-r--r-- | shared/commands.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/shared/commands.py b/shared/commands.py index 3f2e3b1..34f9dbb 100644 --- a/shared/commands.py +++ b/shared/commands.py | |||
| @@ -1,10 +1,17 @@ | |||
| 1 | from aiogram.types import BotCommand as cmd, BotCommandScopeAllGroupChats as group | 1 | from aiogram.types import \ |
| 2 | BotCommand as cmd, \ | ||
| 3 | BotCommandScopeAllGroupChats as group, \ | ||
| 4 | BotCommandScopeAllPrivateChats as private | ||
| 2 | 5 | ||
| 3 | commands = { | 6 | commands = { |
| 4 | group(): [ | 7 | group(): [ |
| 5 | cmd('gen', 'Высрвть текст'), | 8 | cmd('gen', 'Высрвть текст'), |
| 6 | cmd('del', 'Смыть говно'), | 9 | cmd('del', 'Смыть говно'), |
| 7 | cmd('pin', 'Повесить говно на стенку'), | 10 | cmd('pin', 'Повесить говно на стенку'), |
| 8 | cmd('chance', 'Установить шанс высирания говна'), | 11 | cmd('gif', 'Превратить картинку в gif'), |
| 12 | cmd('chance', 'Установить шанс высирания говна') | ||
| 13 | ], | ||
| 14 | private(): [ | ||
| 15 | cmd('gif', 'Превратить картинку в gif') | ||
| 9 | ] | 16 | ] |
| 10 | } | 17 | } |
