mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:36:36 +00:00
abc26d5c20
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
|
|
|