mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-14 12:02:46 +02:00
refactor: switch to domain driven directory layout
This commit is contained in:
parent
e1d5e23db7
commit
ba453e7bdb
68 changed files with 340 additions and 357 deletions
18
app/apps/impl/native_python.py
Normal file
18
app/apps/impl/native_python.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue