Files
2026-01-20 21:48:33 -05:00

15 lines
205 B
Python

from pydantic import BaseModel
class Station(BaseModel):
id: str
name: str
class StationsResponse(BaseModel):
stations: list[Station]
class LinesResponse(BaseModel):
lines: list[str]