Files
bytedance--deer-flow/scripts/detect_thread_boundaries.py
2026-07-13 11:59:58 +08:00

18 lines
379 B
Python

#!/usr/bin/env python3
"""CLI wrapper for the async/thread boundary detector."""
from __future__ import annotations
import sys
from collections.abc import Sequence
from _detector_cli import run_detector
def main(argv: Sequence[str] | None = None) -> int:
return run_detector("support.detectors.thread_boundaries", argv)
if __name__ == "__main__":
sys.exit(main())