mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-11 23:38:04 -05:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
18 lines
547 B
Python
18 lines
547 B
Python
"""Site container for an HTTP server.
|
|
|
|
A Web Site Process Bus object is used to connect applications, servers,
|
|
and frameworks with site-wide services such as daemonization, process
|
|
reload, signal handling, drop privileges, PID file management, logging
|
|
for all of these, and many more.
|
|
|
|
The 'plugins' module defines a few abstract and concrete services for
|
|
use with the bus. Some use tool-specific channels; see the documentation
|
|
for each class.
|
|
"""
|
|
|
|
from .wspbus import bus
|
|
from . import plugins, servers
|
|
|
|
|
|
__all__ = ('bus', 'plugins', 'servers')
|