mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-22 02:11:14 +00:00
0c8f186598
docs -> _docs
9 lines
99 B
Python
9 lines
99 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class TileCoords(BaseModel):
|
|
x: int
|
|
y: int
|
|
zoom: int
|
|
|