0.0.11 refactor, fixes unlink

This commit is contained in:
2023-05-01 19:31:17 +03:00
parent 730725a924
commit 41882595b1
8 changed files with 54 additions and 22 deletions

View File

@@ -48,6 +48,8 @@ async def handle(req):
print('private chat message')
if msg['text'].startswith('/my'):
handle_command_my(msg)
elif msg['text'].startswith('/unlink'):
handle_unlink(msg)
else:
handle_feedback(msg)
elif str(msg['chat']['id']) == FEEDBACK_CHAT_ID: