core/services/inbox/helpers.py

15 lines
253 B
Python
Raw Normal View History

2022-12-04 14:03:55 +00:00
import asyncio
class MessageResult:
def __init__(self, status, message):
2022-12-07 07:49:43 +00:00
self.seen = status
2022-12-04 14:03:55 +00:00
self.message = message
class ChatFollowing:
queue = asyncio.Queue()
def __init__(self, chat_id):
self.chat_id = chat_id