#!/usr/bin/env python3 """ctxguard entry point. Kept dependency-free and importable from any cwd.""" import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent)) from ctxguard.cli import main # noqa: E402 if __name__ == "__main__": sys.exit(main())