szolgáltatók beálltásai, szerkesztése , létrehozása
This commit is contained in:
40
backend/app/constants/__init__.py
Normal file
40
backend/app/constants/__init__.py
Normal file
@@ -0,0 +1,40 @@
|
||||
"""
|
||||
Constants Package
|
||||
=================
|
||||
Static dictionaries for vehicle features, drive types, etc.
|
||||
"""
|
||||
from app.constants.vehicle_features import (
|
||||
CAR_FEATURES,
|
||||
CAR_DRIVE_TYPES,
|
||||
CAR_TRANSMISSION_TYPES,
|
||||
CAR_AC_TYPES,
|
||||
CAR_BODY_TYPES,
|
||||
AC_CONNECTOR_TYPES,
|
||||
DC_CONNECTOR_TYPES,
|
||||
MOTORCYCLE_STROKES,
|
||||
MOTORCYCLE_COOLING,
|
||||
MOTORCYCLE_MIXTURE,
|
||||
MOTORCYCLE_FEATURES,
|
||||
get_all_feature_keys,
|
||||
get_feature_label,
|
||||
get_features_by_category,
|
||||
get_motorcycle_feature_label,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"CAR_FEATURES",
|
||||
"CAR_DRIVE_TYPES",
|
||||
"CAR_TRANSMISSION_TYPES",
|
||||
"CAR_AC_TYPES",
|
||||
"CAR_BODY_TYPES",
|
||||
"AC_CONNECTOR_TYPES",
|
||||
"DC_CONNECTOR_TYPES",
|
||||
"MOTORCYCLE_STROKES",
|
||||
"MOTORCYCLE_COOLING",
|
||||
"MOTORCYCLE_MIXTURE",
|
||||
"MOTORCYCLE_FEATURES",
|
||||
"get_all_feature_keys",
|
||||
"get_feature_label",
|
||||
"get_features_by_category",
|
||||
"get_motorcycle_feature_label",
|
||||
]
|
||||
Reference in New Issue
Block a user