Some checks failed
Backend CI / lint-and-test (push) Failing after 37s
- Introduced unit tests for the station service, covering creation, updating, and archiving of stations. - Added detailed building block view documentation outlining the architecture of the Rail Game system. - Created runtime view documentation illustrating key user interactions and system behavior. - Developed concepts documentation detailing domain models, architectural patterns, and security considerations. - Updated architecture documentation to reference new detailed sections for building block and runtime views.
42 lines
695 B
Python
42 lines
695 B
Python
from .auth import (
|
|
AuthResponse,
|
|
LoginRequest,
|
|
RegisterRequest,
|
|
TokenPayload,
|
|
TokenResponse,
|
|
UserInDB,
|
|
UserPublic,
|
|
)
|
|
from .base import (
|
|
StationCreate,
|
|
StationModel,
|
|
StationUpdate,
|
|
TrackCreate,
|
|
TrackModel,
|
|
TrainCreate,
|
|
TrainModel,
|
|
TrainScheduleCreate,
|
|
UserCreate,
|
|
to_camel,
|
|
)
|
|
|
|
__all__ = [
|
|
"LoginRequest",
|
|
"RegisterRequest",
|
|
"AuthResponse",
|
|
"TokenPayload",
|
|
"TokenResponse",
|
|
"UserInDB",
|
|
"UserPublic",
|
|
"StationCreate",
|
|
"StationModel",
|
|
"StationUpdate",
|
|
"TrackCreate",
|
|
"TrackModel",
|
|
"TrainScheduleCreate",
|
|
"TrainCreate",
|
|
"TrainModel",
|
|
"UserCreate",
|
|
"to_camel",
|
|
]
|