átlagos kiegészítséek jó sok
This commit is contained in:
63
backend/app/models/vehicle/__init__.py
Normal file
63
backend/app/models/vehicle/__init__.py
Normal file
@@ -0,0 +1,63 @@
|
||||
# vehicle package exports
|
||||
from .vehicle_definitions import (
|
||||
VehicleModelDefinition,
|
||||
VehicleType,
|
||||
FeatureDefinition,
|
||||
ModelFeatureMap,
|
||||
)
|
||||
|
||||
from .vehicle import (
|
||||
CostCategory,
|
||||
VehicleCost,
|
||||
VehicleOdometerState,
|
||||
VehicleUserRating,
|
||||
GbCatalogDiscovery,
|
||||
)
|
||||
|
||||
from .external_reference import ExternalReferenceLibrary
|
||||
from .external_reference_queue import ExternalReferenceQueue
|
||||
from .asset import (
|
||||
Asset,
|
||||
AssetCatalog,
|
||||
AssetCost,
|
||||
AssetEvent,
|
||||
AssetFinancials,
|
||||
AssetTelemetry,
|
||||
AssetReview,
|
||||
ExchangeRate,
|
||||
CatalogDiscovery,
|
||||
VehicleOwnership,
|
||||
)
|
||||
|
||||
from .history import AuditLog, LogSeverity
|
||||
|
||||
# --- ÚJ MOTOROS SPECIFIKÁCIÓ MODELL BEEMELÉSE ---
|
||||
from .motorcycle_specs import MotorcycleSpecs
|
||||
|
||||
__all__ = [
|
||||
"VehicleModelDefinition",
|
||||
"VehicleType",
|
||||
"FeatureDefinition",
|
||||
"ModelFeatureMap",
|
||||
"CostCategory",
|
||||
"VehicleCost",
|
||||
"VehicleOdometerState",
|
||||
"VehicleUserRating",
|
||||
"GbCatalogDiscovery",
|
||||
"ExternalReferenceLibrary",
|
||||
"ExternalReferenceQueue",
|
||||
"Asset",
|
||||
"AssetCatalog",
|
||||
"AssetCost",
|
||||
"AssetEvent",
|
||||
"AssetFinancials",
|
||||
"AssetTelemetry",
|
||||
"AssetReview",
|
||||
"ExchangeRate",
|
||||
"CatalogDiscovery",
|
||||
"VehicleOwnership",
|
||||
"AuditLog",
|
||||
"LogSeverity",
|
||||
# --- EXPORT LISTA KIEGÉSZÍTÉSE ---
|
||||
"MotorcycleSpecs",
|
||||
]
|
||||
Reference in New Issue
Block a user