core/services/inbox/helpers.py

15 lines
255 B
Python
Raw Normal View History

2022-12-04 14:03:55 +00:00
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