blitz_api/app/apps/impl/native_python.py

19 lines
518 B
Python
Raw Normal View History

from app.apps.impl.apps_base import AppsBase
2022-09-11 18:32:39 +02:00
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_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()