Add ConnectionArea and StopShape models + Stop-ConnectionArea relationship

This commit is contained in:
2023-04-12 23:30:14 +02:00
parent 71e2530c01
commit 293a1391bc
2 changed files with 97 additions and 4 deletions

View File

@@ -1,6 +1,14 @@
from .line import Line, LinePicto
from .stop import Stop, StopArea
from .stop import ConnectionArea, Stop, StopArea, StopShape
from .user import UserLastStopSearchResults
__all__ = ["Line", "LinePicto", "Stop", "StopArea", "UserLastStopSearchResults"]
__all__ = [
"ConnectionArea",
"Line",
"LinePicto",
"Stop",
"StopArea",
"StopShape",
"UserLastStopSearchResults",
]