(self)
| 13 | |
| 14 | class AgentVMClient: |
| 15 | def __init__(self): |
| 16 | # Path to bridge script relative to this file |
| 17 | self.bridge_path = os.path.join(os.path.dirname(__file__), 'agent_bridge.js') |
| 18 | self.process = None |
| 19 | |
| 20 | def start(self): |
| 21 | print("Booting VM...", file=sys.stderr) |
nothing calls this directly
no outgoing calls
no test coverage detected