feat(src): Resolve imports and create sloppy.py entry point
This commit is contained in:
12
sloppy.py
Normal file
12
sloppy.py
Normal 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()
|
||||
Reference in New Issue
Block a user