mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 23:38:49 +00:00
12 lines
202 B
Python
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"]
|