added diorama to server side

This commit is contained in:
Dillon DuPont
2025-05-15 14:57:06 -04:00
parent 10b430e9fd
commit c510eb363a
12 changed files with 1944 additions and 8 deletions
@@ -0,0 +1,4 @@
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."}