#!/usr/bin/env python3
"""Source-tree stand-in for the installed repo-members console script."""

from pathlib import Path
import sys


sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "tools"))

from repoctl.console import main  # noqa: E402


raise SystemExit(main())
