Initial commit: FastAPI Hello-World app for hello-test
Deploy App / deploy (push) Successful in 24s

This commit is contained in:
2026-07-08 13:38:18 +02:00
commit af68c39ed0
5 changed files with 55 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello from AICDS!"}