mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-13 11:52:45 +02:00
Some apps might give status information that is computationally to expensive to include in the normal status endpoint which can be polled more often. closes #237
This commit is contained in:
parent
f22074c0b2
commit
00e56ba155
5 changed files with 99 additions and 1 deletions
|
|
@ -18,6 +18,9 @@ class NativePythonApps(AppsBase):
|
|||
async def get_app_status(self):
|
||||
raise _NotImplemented()
|
||||
|
||||
async def get_app_status_advanced(self, app_id: str):
|
||||
raise _NotImplemented()
|
||||
|
||||
async def get_app_status_sub(self):
|
||||
raise _NotImplemented()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue