Video-Gen / app /main.py
jacky3102's picture
Upload 33 files
9459cd0 verified
Raw
History Blame Contribute Delete
301 Bytes
from fastapi import FastAPI
from app.api.routes import router
app = FastAPI(
title="AI Video Renderer Engine",
description="Template-based video rendering API for AI Agents.",
version="0.1.0",
)
app.include_router(router)
@app.get("/health")
def health():
return {"status": "ok"}