Add GUI command

This commit is contained in:
thePR0M3TH3AN
2025-07-18 10:57:00 -04:00
parent b8a2e29f21
commit 7ef7246361
2 changed files with 24 additions and 0 deletions

View File

@@ -682,5 +682,13 @@ def api_stop(ctx: typer.Context, host: str = "127.0.0.1", port: int = 8000) -> N
typer.echo(f"Failed to stop server: {exc}")
@app.command()
def gui() -> None:
"""Launch the BeeWare GUI."""
from seedpass_gui.app import main
main()
if __name__ == "__main__":
app()