mirror of
https://github.com/trycua/computer.git
synced 2026-01-09 23:10:11 -06:00
9 lines
198 B
Python
9 lines
198 B
Python
"""
|
|
Proxy module for exposing ComputerAgent over HTTP and P2P connections.
|
|
"""
|
|
|
|
from .server import ProxyServer
|
|
from .handlers import ResponsesHandler
|
|
|
|
__all__ = ['ProxyServer', 'ResponsesHandler']
|