This commit is contained in:
dize_dev
2023-10-29 23:01:17 +06:00
commit f43aee3e57
15 changed files with 248 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from custom_rules.permission import Permission
from vkbottle.user import Message
from config import bl, edit_message
@bl.message(Permission(), text="хелло")
async def hello(message: Message):
await edit_message(
message,
"привет"
)