Files
flow-manager/backend/app/main.py
2026-01-27 14:00:02 +01:00

9 lines
155 B
Python

from fastapi import FastAPI
app = FastAPI(title="Auteur AI API")
@app.get("/")
async def root():
return {"message": "Auteur AI Backend is running"}