mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 17:41:12 +00:00
0c8f186598
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"}
|
|
|