File size: 433 Bytes
aac350d bbc3fdf aac350d bbc3fdf aac350d bbc3fdf aac350d bbc3fdf aac350d bbc3fdf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | """Config package — re-exports settings + path constants."""
from config.settings import (
Settings,
settings,
make_settings,
BASE_DIR,
DATA_DIR,
MODELS_DIR,
GALLERY_DIR,
UPLOADS_DIR,
JOBS_DIR,
UI_DIR,
)
__all__ = [
"Settings",
"settings",
"make_settings",
"BASE_DIR",
"DATA_DIR",
"MODELS_DIR",
"GALLERY_DIR",
"UPLOADS_DIR",
"JOBS_DIR",
"UI_DIR",
]
|