Files
computer/libs/python/computer-server/computer_server/diorama/base.py
2025-10-22 11:35:31 -07:00

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."}