gridguide / app.py
vprzybylo
first commit in new repo
4694efc
raw
history blame
208 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))
from ui.app import main
if __name__ == "__main__":
main()