mirror of
https://github.com/Junyi-99/ChatGPT-API-Leakage.git
synced 2026-07-18 08:06:03 +02:00
776858224e
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
242 B
Python
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__")
|