Initial commit: Waste Collection API

This commit is contained in:
2026-04-05 07:29:36 +00:00
commit 109b682a88
17 changed files with 1016 additions and 0 deletions

34
app/models.py Normal file
View File

@@ -0,0 +1,34 @@
# 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",
]