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