summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/google_settings/__init__.py
blob: ef4b23425ccfffd12d448c5f2691b15f35f90d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
    SleekXMPP: The Sleek XMPP Library
    Copyright (C) 2013 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.google_settings import stanza
from sleekxmpp.plugins.google_settings.settings import GoogleSettings


register_plugin(GoogleSettings)