first commit

This commit is contained in:
drjones
2026-05-23 21:58:06 -07:00
commit 1f5e63ca1f
73 changed files with 13565 additions and 0 deletions

11
run.py Normal file
View File

@@ -0,0 +1,11 @@
"""Launcher for development (pythonw run.py) so scheduled task can find a stable path."""
import sys
from proxy_chain_manager import __version__
from proxy_chain_manager.app import main
if __name__ == "__main__":
if "--version" in sys.argv or "-V" in sys.argv:
print(f"Proxy God {__version__}")
sys.exit(0)
main()