Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI() | |
def health_check(): | |
return {"status": "ok", "message": "API is running"} | |
from fastapi import FastAPI | |
app = FastAPI() | |
def health_check(): | |
return {"status": "ok", "message": "API is running"} | |