mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-31 12:44:52 +00:00
Register the new chat administration methods
This commit is contained in:
parent
5bf912640f
commit
0b2efd2b7a
1 changed files with 9 additions and 1 deletions
|
|
@ -19,13 +19,21 @@
|
|||
from .export_chat_invite_link import ExportChatInviteLink
|
||||
from .get_chat import GetChat
|
||||
from .join_chat import JoinChat
|
||||
from .kick_chat_member import KickChatMember
|
||||
from .leave_chat import LeaveChat
|
||||
from .promote_chat_member import PromoteChatMember
|
||||
from .restrict_chat_member import RestrictChatMember
|
||||
from .unban_chat_member import UnbanChatMember
|
||||
|
||||
|
||||
class Chats(
|
||||
GetChat,
|
||||
ExportChatInviteLink,
|
||||
LeaveChat,
|
||||
JoinChat
|
||||
JoinChat,
|
||||
KickChatMember,
|
||||
UnbanChatMember,
|
||||
RestrictChatMember,
|
||||
PromoteChatMember
|
||||
):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue