PageRenderTime 19ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/circuits/web/apps/__init__.py

https://bitbucket.org/prologic/circuits/
Python | 17 lines | 6 code | 3 blank | 8 comment | 0 complexity | 99c698deb5c3b4310af95c259e8afee2 MD5 | raw file
  1. # Package: apps
  2. # Date: 3rd February 2011
  3. # Author: James Mills, prologic at shortcircuit dot net dot au
  4. """Apps
  5. This package contains self-contained small packaged apps that come shipped
  6. with circuits.web that can be used within a circuits.web application.
  7. """
  8. from circuits.web.apps.webconsole import WebConsole
  9. from circuits.web.apps.memorymonitor import MemoryMonitor
  10. __all__ = (
  11. "WebConsole",
  12. "MemoryMonitor",
  13. )