10 lines
299 B
Python
Executable File
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()
|