13 lines
268 B
Python
13 lines
268 B
Python
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()
|