Files
Hippolyzer/bin/hippolyzer-cli
2021-05-01 20:22:04 +00:00

10 lines
299 B
Python
Executable File

#!/usr/bin/env python
from hippolyzer.apps.proxy import mp_main, main
# Have to use our own script rather than an autogenerated setuptools wrapper
# with console_scripts so we can define the __mp_main__ entrypoint
if __name__ == "__main__":
main()
elif __name__ == "__mp_main__":
mp_main()