Spaces:
Sleeping
Sleeping
File size: 451 Bytes
5d03c05 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from python.helpers.api import ApiHandler, Request, Response
class Health(ApiHandler):
@classmethod
def requires_auth(cls) -> bool:
return False
@classmethod
def requires_csrf(cls) -> bool:
return False
@classmethod
def get_methods(cls) -> list[str]:
return ["GET"]
async def process(self, input: dict, request: Request) -> dict:
return {"status": "ok", "message": "Service is running"}
|