mirror of
https://github.com/trycua/computer.git
synced 2026-01-01 02:50:15 -06:00
5 lines
244 B
Python
5 lines
244 B
Python
class BaseDioramaHandler:
|
|
"""Base Diorama handler for unsupported OSes."""
|
|
async def diorama_cmd(self, action: str, arguments: dict = None) -> dict:
|
|
return {"success": False, "error": "Diorama is not supported on this OS yet."}
|