blob: a54a77054f5997d76f5391f5207283cf14ea54dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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("gif", "Превратить картинку в gif"),
cmd("chance", "Установить шанс высирания говна"),
],
private(): [cmd("gif", "Превратить картинку в gif")],
}
|