Changed ip

This commit is contained in:
2025-10-21 00:46:50 +02:00
parent 63f9b2679e
commit fe2e7bba67

View File

@@ -3,7 +3,7 @@ local packageStoreageUrl = "/packages"
if args[1] == "list" then
local res = http.get("http://192.168.178.24:7000/api/repo/list")
local res = http.get("http://85.214.239.211:7000/api/repo/list")
local ds = res.readAll()
print(ds)
local json = textutils.unserializeJSON(ds)
@@ -16,7 +16,7 @@ if args[1] == "install" then
print("Package already installed!")
return;
end
local ws, stat = http.websocket("ws://192.168.178.24:7000/repo/install")
local ws, stat = http.websocket("ws://85.214.239.211:7000/repo/install")
local msg = {
repoName = args[2]
}