mirror of
https://github.com/Shiva108/ai-llm-red-team-handbook.git
synced 2026-02-12 14:42:46 +00:00
8 lines
180 B
Python
Executable File
8 lines
180 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Entry point for running as a module: python -m prompt_injection_tester"""
|
|
|
|
from .cli import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|