1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 09:34:38 +01:00
MadelineProto/classes/chat.py

6 lines
134 B
Python

class Chat():
def __init__(self):
self._users = [] # users in this chatroom
def add_user(self, user):
self._users += user