VoxelEngine/dev/tests/network_http.lua
2025-09-14 15:12:12 +03:00

9 lines
264 B
Lua

local response_received = false
network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/latest", function (s)
print(json.parse(s).name)
response_received = true
end)
app.sleep_until(function () return response_received end, nil, 10)