9 lines
155 B
Python
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"}
|