feat(src): Resolve imports and create sloppy.py entry point

This commit is contained in:
2026-03-04 10:01:55 -05:00
parent a0276e0894
commit c102392320
44 changed files with 90 additions and 21 deletions

12
sloppy.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
import os
# Add src to sys.path so we can import from it easily
project_root = os.path.dirname(os.path.abspath(__file__))
src_path = os.path.join(project_root, "src")
sys.path.insert(0, src_path)
from gui_2 import main
if __name__ == "__main__":
main()