Files
Junyi Hou 776858224e fix: add module docstring to main.py to satisfy pylint CI
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 16:36:45 +08:00

10 lines
242 B
Python

"""Entry point that delegates to the scanner package under src/."""
import runpy
import sys
from pathlib import Path
SRC = Path(__file__).parent / "src"
sys.path.insert(0, str(SRC))
runpy.run_path(str(SRC / "main.py"), run_name="__main__")