__init__.py 468 B

12345678910111213141516171819
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2011 Nathanael C. Fritz
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.plugins.base import register_plugin
  8. from sleekxmpp.features.feature_starttls.starttls import FeatureSTARTTLS
  9. from sleekxmpp.features.feature_starttls.stanza import *
  10. register_plugin(FeatureSTARTTLS)
  11. # Retain some backwards compatibility
  12. feature_starttls = FeatureSTARTTLS