mirror of
https://github.com/dizedev/vk_lp.git
synced 2026-09-17 03:58:56 +00:00
12 lines
343 B
Python
12 lines
343 B
Python
from vkbottle.user import Message, UserLabeler
|
|
|
|
from config import edit_message, prefix_bot
|
|
from custom_rules.permission import Permission
|
|
|
|
bl = UserLabeler()
|
|
|
|
|
|
@bl.message(Permission(), text=prefix_bot + " <command>")
|
|
async def wrapper(message: Message):
|
|
await edit_message(message, "Такой команды не существует")
|