mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:46:36 +00:00
abc26d5c20
docs -> _docs
18 lines
305 B
Python
18 lines
305 B
Python
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"}
|
|
|