initial structure implemented

docs -> _docs
This commit is contained in:
Oleksandr Bezdieniezhnykh
2025-12-01 14:20:56 +02:00
parent 9134c5db06
commit abc26d5c20
360 changed files with 3881 additions and 101 deletions
+17
View File
@@ -0,0 +1,17 @@
from fastapi import FastAPI
from api import router
app = FastAPI(
title="GPS-Denied Desktop",
description="GPS-denied UAV localization system",
version="0.1.0",
)
app.include_router(router, prefix="/api/v1")
@app.get("/health")
async def health_check():
return {"status": "healthy"}