/circuits/web/dispatchers/__init__.py

https://bitbucket.org/prologic/circuits/ · Python · 19 lines · 6 code · 3 blank · 10 comment · 0 complexity · c131b4147ce93b49d1b8d3e2def845de MD5 · raw file

  1. # Package: dispatchers
  2. # Date: 26th February 2011
  3. # Author: James Mills, prologic at shortcircuit dot net dot au
  4. """Dispatchers
  5. This package contains various circuits.web dispatchers
  6. By default a ``circuits.web.Server`` Component uses the
  7. ``dispatcher.Dispatcher``
  8. """
  9. from .static import Static
  10. from .xmlrpc import XMLRPC
  11. from .jsonrpc import JSONRPC
  12. from .dispatcher import Dispatcher
  13. from .virtualhosts import VirtualHosts
  14. from ..websockets.dispatcher import WebSocketsDispatcher
  15. # flake8: noqa