Fix CLI launcher and module entry

This commit is contained in:
thePR0M3TH3AN
2025-07-11 11:24:24 -04:00
parent e528485833
commit 29b06d5b40
2 changed files with 6 additions and 2 deletions

View File

@@ -573,3 +573,7 @@ def api_stop(ctx: typer.Context, host: str = "127.0.0.1", port: int = 8000) -> N
)
except Exception as exc: # pragma: no cover - best effort
typer.echo(f"Failed to stop server: {exc}")
if __name__ == "__main__":
app()