slixmpp/sleekxmpp/plugins/xep_0080/__init__.py

16 lines
388 B
Python
Raw Normal View History

2012-03-10 20:54:31 +00:00
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
2012-03-13 02:06:54 +00:00
from sleekxmpp.plugins.base import register_plugin
2012-03-10 20:54:31 +00:00
from sleekxmpp.plugins.xep_0080.stanza import Geoloc
2012-03-13 02:06:54 +00:00
from sleekxmpp.plugins.xep_0080.geoloc import XEP_0080
register_plugin(XEP_0080)