Alexander Watson
initial checkin
eb03925
raw
history blame contribute delete
206 Bytes
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()