mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 22:41:12 +00:00
0c8f186598
docs -> _docs
10 lines
157 B
Python
10 lines
157 B
Python
from datetime import datetime
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class HeadingRecord(BaseModel):
|
|
frame_id: int
|
|
heading: float
|
|
timestamp: datetime
|
|
|