2022-10-03 20:22:00 +02:00
|
|
|
from app.apps.impl.apps_base import AppsBase
|
2022-09-10 22:14:37 +02:00
|
|
|
|
|
|
|
|
|
2022-09-11 18:32:39 +02:00
|
|
|
class NativePythonApps(AppsBase):
|
|
|
|
|
async def get_app_status_single(self, app_id: str):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|
2022-09-11 18:32:39 +02:00
|
|
|
|
|
|
|
|
async def get_app_status(self):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|
2022-09-11 18:32:39 +02:00
|
|
|
|
2024-02-18 12:10:35 +01:00
|
|
|
async def get_app_status_advanced(self, app_id: str):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|
2024-02-18 12:10:35 +01:00
|
|
|
|
2022-09-11 18:32:39 +02:00
|
|
|
async def get_app_status_sub(self):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|
2022-09-11 18:32:39 +02:00
|
|
|
|
|
|
|
|
async def install_app_sub(self, app_id: str):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|
2022-09-11 18:32:39 +02:00
|
|
|
|
|
|
|
|
async def uninstall_app_sub(self, app_id: str, delete_data: bool):
|
2024-08-01 09:22:29 +02:00
|
|
|
raise NotImplementedError()
|