blob: bf1a6cbb9b2a6c1a121b19d6401a8e6979176ecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from aiogram.types import BotCommand as cmd
from aiogram.types import BotCommandScopeAllGroupChats as group
from aiogram.types import BotCommandScopeAllPrivateChats as private
commands = {
group(): [
cmd("gen", "Покакать текстом"),
cmd("del", "Убрать говно"),
cmd("pin", "Закрепить говно"),
cmd("chance", "Установить шанс покакать в туалет"),
],
}
|