MCPcopy Create free account
hub / github.com/RawdogReverend/TermNet / __init__

Method __init__

backend/termnet/main.py:80–85  ·  view source on GitHub ↗
(self, host="localhost", port=876)

Source from the content-addressed store, hash-verified

78
79class TermNetWebSocketServer:
80 def __init__(self, host="localhost", port=876):
81 self.host = host
82 self.port = port
83 self.connected_clients = set()
84 self.term = None
85 self.agent = None
86
87 async def initialize_termnet(self):
88 """Initialize the TerminalSession and TermNetAgent"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected