feat(installer): update modules JSON URL

Switched the source URL for modules JSON to a new, more robust and secure internal repository, ensuring a safer and more reliable module fetching process. This change was made to address the need for a consistent and reliable source for module data, improving the maintainability of the system.
This commit is contained in:
Kumi 2024-04-12 12:45:58 +02:00
parent fec997cc11
commit 600c60db2d
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -4,7 +4,7 @@ import json
import subprocess
class Installer:
MODULES_JSON = "https://kumig.it/-/snippets/131/raw/main/modules.json"
MODULES_JSON = "https://git.private.coffee/KumiSystems/pix360-modules/raw/branch/main/modules.json"
def __init__(self):
self.available_modules = self.fetch_modules()