Files
2026-07-08 13:38:18 +02:00

9 lines
122 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello from AICDS!"}