AW: theCure

This commit is contained in:
2025-08-27 19:15:08 +02:00
commit 5eab37082c
32 changed files with 1188 additions and 0 deletions

11
backend/app/main.py Normal file
View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
from .routes import runtime, admin
app = FastAPI(title="Codeless Platform API", version="0.1.0")
@app.get("/health")
async def health():
return {"status": "ok"}
app.include_router(runtime.router, prefix="/api", tags=["runtime"])
app.include_router(admin.router, prefix="/admin", tags=["admin"])