mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 17:16:26 +00:00
9 lines
266 B
Python
9 lines
266 B
Python
"""Transport Stream proxy module"""
|
|
|
|
# Only class imports, no instance creation
|
|
from .server import ProxyServer
|
|
from .stream_manager import StreamManager
|
|
from .stream_buffer import StreamBuffer
|
|
from .client_manager import ClientManager
|
|
|
|
proxy_server = ProxyServer()
|