lucidia sync: providers registry, db, main updates

This commit is contained in:
2026-02-03 19:49:01 -06:00
parent 5185ed2e96
commit 41618f2509
1195 changed files with 349457 additions and 7456 deletions

8
runtime/venv/bin/pip Executable file
View File

@@ -0,0 +1,8 @@
#!/home/pi/lucidia/runtime/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())