Spaces:
Runtime error
Runtime error
| """Desktop VM module interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class DesktopVMInterface(Protocol): | |
| async def run_task(self, command: str) -> str: | |
| ... | |