mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 18:21:13 +00:00
c30fd4f67d
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
267 B
Python
14 lines
267 B
Python
"""Black-box runner entry point."""
|
|
|
|
from collections.abc import Sequence
|
|
|
|
from e2e.replay.harness import main as replay_main
|
|
|
|
|
|
def main(argv: Sequence[str] | None = None) -> int:
|
|
return replay_main(argv)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|