blitz_api/app/apps/impl/native_python.py
fusion44 005f1149ab
feat: replace SSE with a websockets
Old: /sse/subscribe
New: /ws

refs #252
2024-08-01 09:24:36 +02:00

21 lines
613 B
Python

from app.apps.impl.apps_base import AppsBase
class NativePythonApps(AppsBase):
async def get_app_status_single(self, app_id: str):
raise NotImplementedError()
async def get_app_status(self):
raise NotImplementedError()
async def get_app_status_advanced(self, app_id: str):
raise NotImplementedError()
async def get_app_status_sub(self):
raise NotImplementedError()
async def install_app_sub(self, app_id: str):
raise NotImplementedError()
async def uninstall_app_sub(self, app_id: str, delete_data: bool):
raise NotImplementedError()