Add initial support for XEP-0016 Privacy Lists

This commit is contained in:
Lance Stout
2012-07-30 22:07:24 -07:00
parent f8856467d5
commit 7c6ef18e4f
5 changed files with 231 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
from sleekxmpp.plugins.base import register_plugin
from sleekxmpp.plugins.xep_0016 import stanza
from sleekxmpp.plugins.xep_0016.stanza import Privacy
from sleekxmpp.plugins.xep_0016.privacy import XEP_0016
register_plugin(XEP_0016)