"""`gps-denied-replay` CLI entrypoint — STUB. Owned by AZ-402. Bootstrap exposes a callable so `[project.scripts]` in pyproject.toml resolves. """ from __future__ import annotations import sys def main(argv: list[str] | None = None) -> int: """Replay-CLI entrypoint.""" print("gps-denied-replay is not yet implemented (AZ-402 / E-DEMO-REPLAY)", file=sys.stderr) return 2 if __name__ == "__main__": raise SystemExit(main())