9 lines
171 B
Python
9 lines
171 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(title="FFmpeg Worker", version="1.0.0")
|
|
|
|
|
|
@app.get("/health")
|
|
async def health() -> dict[str, str]:
|
|
return {"status": "ok"}
|