Files
computer/libs/python/computer-server/computer_server/diorama/base.py

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