15 lines
255 B
Python
15 lines
255 B
Python
|
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
|