first and real commit

This commit is contained in:
2026-04-25 15:20:23 -06:00
commit a5ed36ef96
15 changed files with 978 additions and 0 deletions

9
api/routes/root.py Normal file
View File

@@ -0,0 +1,9 @@
from fastapi import APIRouter
router = APIRouter()
@router.get('/', tags=["root"])
def root():
return {
"status": "running"
}