summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/protoxep_occupantid/__init__.py
blob: 1bd374b6a8b0bc3500c6b6bcb8268b011d64feef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2019 Mathieu Pasquet
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""
from slixmpp.plugins.base import register_plugin
from slixmpp.plugins.protoxep_occupantid.occupantid import XEP_OccupantID
from slixmpp.plugins.protoxep_occupantid.stanza import OccupantID

register_plugin(XEP_OccupantID)