35 lines
700 B
Python
35 lines
700 B
Python
# Pure Pydantic models — no waste_collection_schedule imports here.
|
|
from .schemas import (
|
|
Collection,
|
|
Notification,
|
|
ICSRequest,
|
|
AbfallIORequest,
|
|
AWMRequest,
|
|
NotifyRequest,
|
|
SourceInfo,
|
|
SourceListResponse,
|
|
SourceDetailResponse,
|
|
CollectionsResponse,
|
|
NotificationsResponse,
|
|
NotifyResponse,
|
|
DeleteResponse,
|
|
SourceParam,
|
|
)
|
|
|
|
__all__ = [
|
|
"Collection",
|
|
"Notification",
|
|
"ICSRequest",
|
|
"AbfallIORequest",
|
|
"AWMRequest",
|
|
"NotifyRequest",
|
|
"SourceInfo",
|
|
"SourceListResponse",
|
|
"SourceDetailResponse",
|
|
"CollectionsResponse",
|
|
"NotificationsResponse",
|
|
"NotifyResponse",
|
|
"DeleteResponse",
|
|
"SourceParam",
|
|
]
|