blob: 75da0ca2fcb72db5f65c715ac21a4e1cf21a8f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""
Slixmpp: The Slick XMPP Library
Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
This file is part of Slixmpp.
See the file LICENSE for copying permission.
"""
from slixmpp.plugins import register_plugin
from slixmpp.plugins.xep_0045 import stanza
from slixmpp.plugins.xep_0045.muc import XEP_0045
from slixmpp.plugins.xep_0045.stanza import MUCPresence
register_plugin(XEP_0045)
|