#!/usr/bin/env python3
"""Executable entry point for Codex Native Scheduler."""

from codex_scheduler.cli import main


if __name__ == "__main__":
    raise SystemExit(main())
