18 lines
515 B
Python
18 lines
515 B
Python
"""跨平台市場情報服務模組。"""
|
|
|
|
__all__ = ["MarketIntelService", "MarketIntelRuntimeStatus"]
|
|
|
|
|
|
def __getattr__(name):
|
|
if name in __all__:
|
|
from services.market_intel.service import (
|
|
MarketIntelRuntimeStatus,
|
|
MarketIntelService,
|
|
)
|
|
|
|
return {
|
|
"MarketIntelService": MarketIntelService,
|
|
"MarketIntelRuntimeStatus": MarketIntelRuntimeStatus,
|
|
}[name]
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|