Add basic GUI windows and headless tests

This commit is contained in:
thePR0M3TH3AN
2025-07-18 08:46:34 -04:00
parent bc2c22ac10
commit d93f47e3ee
3 changed files with 85 additions and 11 deletions

View File

@@ -1,11 +1,11 @@
"""Graphical user interface for SeedPass."""
from .app import SeedPassApp
from .app import SeedPassApp, build
def main() -> None:
"""Launch the GUI application."""
SeedPassApp().main_loop()
build().main_loop()
__all__ = ["SeedPassApp", "main"]