df91fab 330f66b df91fab
1
2
3
4
5
6
7
8
9
10
11
12
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()