Spaces:
Running
Running
File size: 206 Bytes
eb03925 |
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 actual app
from app import main
main()
|