Files
seedPass/src/seedpass_gui/__init__.py
2025-07-18 08:46:34 -04:00

12 lines
202 B
Python

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