M0: scaffold — uv project, FastAPI health, pytest

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
team3
2026-07-23 00:21:10 +02:00
commit 0a4c9a131a
8 changed files with 510 additions and 0 deletions

0
backend/tft/__init__.py Normal file
View File

View File

8
backend/tft/api/app.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI(title="tft-sim")
@app.get("/health")
def health() -> dict:
return {"status": "ok"}