feat(#237): implement app_status_advanced endpoint (#238)

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:
fusion44 2024-02-18 12:10:35 +01:00 committed by GitHub
parent f22074c0b2
commit 00e56ba155
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 99 additions and 1 deletions

View file

@ -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()