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