OLD | NEW |
(Empty) | |
| 1 """Site container for an HTTP server. |
| 2 |
| 3 A Web Site Process Bus object is used to connect applications, servers, |
| 4 and frameworks with site-wide services such as daemonization, process |
| 5 reload, signal handling, drop privileges, PID file management, logging |
| 6 for all of these, and many more. |
| 7 |
| 8 The 'plugins' module defines a few abstract and concrete services for |
| 9 use with the bus. Some use tool-specific channels; see the documentation |
| 10 for each class. |
| 11 """ |
| 12 |
| 13 from cherrypy.process.wspbus import bus |
| 14 from cherrypy.process import plugins, servers |
OLD | NEW |