This commit is contained in:
2022-12-04 17:03:55 +03:00
parent 5b67d372ad
commit a034eda220
10 changed files with 83 additions and 22 deletions

14
services/inbox/helpers.py Normal file
View File

@@ -0,0 +1,14 @@
import asyncio
class MessageResult:
def __init__(self, status, message):
self.status = status
self.message = message
class ChatFollowing:
queue = asyncio.Queue()
def __init__(self, chat_id):
self.chat_id = chat_id