mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:06:37 +00:00
abc26d5c20
docs -> _docs
11 lines
180 B
Python
11 lines
180 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ImageBatch(BaseModel):
|
|
images: list[bytes]
|
|
filenames: list[str]
|
|
start_sequence: int
|
|
end_sequence: int
|
|
batch_number: int
|
|
|