mirror of
https://github.com/Icex0/wp2shell-poc
synced 2026-07-18 19:05:08 +00:00
10 lines
182 B
Python
Executable File
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())
|