core/services/inbox/helpers.py
2022-12-07 10:49:43 +03:00

15 lines
253 B
Python

import asyncio
class MessageResult:
def __init__(self, status, message):
self.seen = status
self.message = message
class ChatFollowing:
queue = asyncio.Queue()
def __init__(self, chat_id):
self.chat_id = chat_id