FIN_ASSISTANT / core /__init__.py
QAway-to
Refactor project into layered prototype structure
0d9474a
raw
history blame contribute delete
421 Bytes
"""Legacy compatibility layer bridging old imports to the new structure."""
from application.chat_assistant import ChatAssistant
from application.metrics_table import show_metrics_table
from application.portfolio_analyzer import PortfolioAnalyzer
from application.portfolio_comparer import PortfolioComparer
__all__ = [
"ChatAssistant",
"PortfolioAnalyzer",
"PortfolioComparer",
"show_metrics_table",
]