Spaces:
Sleeping
Sleeping
| import sys | |
| from pathlib import Path | |
| # Add src directory to Python path | |
| src_path = Path(__file__).parent / "src" | |
| sys.path.append(str(src_path)) | |
| # Import and run the main app | |
| from src.app import main | |
| if __name__ == "__main__": | |
| main() |