From 37c78f608a12712545528de1f567b104eef464f0 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Fri, 18 Jul 2025 10:39:52 -0400 Subject: [PATCH] Add module entry point --- src/seedpass_gui/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/seedpass_gui/__main__.py diff --git a/src/seedpass_gui/__main__.py b/src/seedpass_gui/__main__.py new file mode 100644 index 0000000..37c2a2d --- /dev/null +++ b/src/seedpass_gui/__main__.py @@ -0,0 +1,4 @@ +from .app import main + +if __name__ == "__main__": + main()