File size: 421 Bytes
0d9474a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""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",
]