remove the current solution, add skills

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-14 18:37:48 +02:00
parent fd75243a84
commit 767874cb90
363 changed files with 6057 additions and 36380 deletions
-17
View File
@@ -1,17 +0,0 @@
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"}