mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-14 12:02:46 +02:00
23 lines
586 B
Python
23 lines
586 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class AppsBase:
|
|
@abstractmethod
|
|
async def get_app_status_single(self, app_id: str):
|
|
raise NotImplementedError()
|
|
|
|
@abstractmethod
|
|
async def get_app_status(self):
|
|
raise NotImplementedError()
|
|
|
|
@abstractmethod
|
|
async def get_app_status_sub(self):
|
|
raise NotImplementedError()
|
|
|
|
@abstractmethod
|
|
async def install_app_sub(self, app_id: str):
|
|
raise NotImplementedError()
|
|
|
|
@abstractmethod
|
|
async def uninstall_app_sub(self, app_id: str, delete_data: bool):
|
|
raise NotImplementedError()
|