Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0079 / __init__.py
blob09e6671588c08f4ff71ec53ff6bf46ddfed220cc
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of SleekXMPP.
6 See the file LICENSE for copying permission.
7 """
9 from sleekxmpp.plugins.base import register_plugin
11 from sleekxmpp.plugins.xep_0079.stanza import (
12 AMP, Rule, InvalidRules, UnsupportedConditions,
13 UnsupportedActions, FailedRules, FailedRule,
14 AMPFeature)
15 from sleekxmpp.plugins.xep_0079.amp import XEP_0079
18 register_plugin(XEP_0079)