mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 11:34:41 +01:00
6 lines
134 B
Python
6 lines
134 B
Python
|
|
class Chat():
|
|
def __init__(self):
|
|
self._users = [] # users in this chatroom
|
|
def add_user(self, user):
|
|
self._users += user |