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
+14
View File
@@ -0,0 +1,14 @@
from pydantic import BaseModel
from ..core.gps_point import GPSPoint
class SearchSession(BaseModel):
session_id: str
flight_id: str
frame_id: int
center_gps: GPSPoint
current_grid_size: int = 1
max_grid_size: int = 25
found: bool = False
exhausted: bool = False