(self, host="localhost", port=876)
| 78 | |
| 79 | class 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""" |
nothing calls this directly
no outgoing calls
no test coverage detected