mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-13 11:52:45 +02:00
18 lines
518 B
Python
18 lines
518 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_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()
|