feat: add FastAPI, Entity base class, and health check endpoint

This commit is contained in:
2026-07-29 10:38:16 -04:00
parent 2cb5045836
commit 5bb6cedd03
7 changed files with 123 additions and 23 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def health_check():
return {"status": "ok"}