Add support for XEP-0235: OAuth over XMPP

This commit is contained in:
Lance Stout
2012-09-04 19:42:49 -07:00
parent 357406d801
commit a88b9737ff
5 changed files with 130 additions and 0 deletions

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_0235 import stanza
from sleekxmpp.plugins.xep_0235.stanza import OAuth
from sleekxmpp.plugins.xep_0235.oauth import XEP_0235
register_plugin(XEP_0235)