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