mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
6 lines
245 B
Python
6 lines
245 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."}
|