Spaces:
Runtime error
Runtime error
# backend/__init__.py | |
# Import functions from individual modules to make them accessible directly from the 'backend' package | |
from .sentiment_analyzer import analyze_sentiment | |
from .sarcasm_detector import detect_sarcasm_and_highlight | |
from .csv_processor import process_csv_for_dashboard | |
# You can also define __all__ to explicitly list what gets imported with `from backend import *` | |
__all__ = [ | |
"analyze_sentiment", | |
"detect_sarcasm_and_highlight", | |
"process_csv_for_dashboard" | |
] | |