__init__.py 251 B

12345678910111213
  1. # -*- test-case-name: twisted.protocols.haproxy.test -*-
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. HAProxy PROXY protocol implementations.
  6. """
  7. from ._wrapper import proxyEndpoint
  8. __all__ = [
  9. 'proxyEndpoint',
  10. ]