Add old project to repo.

This commit is contained in:
2025-04-25 05:59:42 -07:00
parent 4592eb7b7d
commit df39fd1a0e
69 changed files with 1103 additions and 0 deletions

11
Buddy/buddy/bin/pip Executable file
View File

@ -0,0 +1,11 @@
#!/root/Buddy/buddy/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())