2025-12-29 03:06:49 +08:00
|
|
|
"""
|
2026-04-06 16:47:36 +07:00
|
|
|
Configuration module
|
|
|
|
|
Export all configurations uniformly
|
2025-12-29 03:06:49 +08:00
|
|
|
"""
|
2026-04-09 14:30:51 +07:00
|
|
|
|
2025-12-29 03:06:49 +08:00
|
|
|
from app.config.api_keys import APIKeys
|
2026-04-09 14:30:51 +07:00
|
|
|
from app.config.data_sources import CCXTConfig, DataSourceConfig, FinnhubConfig, TiingoConfig, YFinanceConfig
|
|
|
|
|
from app.config.database import CacheConfig, RedisConfig
|
|
|
|
|
from app.config.settings import Config
|
2025-12-29 03:06:49 +08:00
|
|
|
|
|
|
|
|
__all__ = [
|
2026-04-06 16:47:36 +07:00
|
|
|
# main configuration
|
2026-04-09 14:30:51 +07:00
|
|
|
"Config",
|
2026-04-06 16:47:36 +07:00
|
|
|
# API key
|
2026-04-09 14:30:51 +07:00
|
|
|
"APIKeys",
|
2026-04-06 16:47:36 +07:00
|
|
|
# Database/cache
|
2026-04-09 14:30:51 +07:00
|
|
|
"RedisConfig",
|
|
|
|
|
"CacheConfig",
|
2026-04-06 16:47:36 +07:00
|
|
|
# data source
|
2026-04-09 14:30:51 +07:00
|
|
|
"DataSourceConfig",
|
|
|
|
|
"FinnhubConfig",
|
|
|
|
|
"TiingoConfig",
|
|
|
|
|
"YFinanceConfig",
|
|
|
|
|
"CCXTConfig",
|
2025-12-29 03:06:49 +08:00
|
|
|
]
|