Files
Icex0-wp2shell-poc/wp2shell.py
T
2026-07-18 00:50:04 +02:00

10 lines
182 B
Python
Executable File

#!/usr/bin/env python3
"""Standalone launcher — equivalent to `python3 -m wp2shell`."""
import sys
from wp2shell.cli import main
if __name__ == "__main__":
sys.exit(main())