Files
GoSally/com/Net/GetExpl.lua
2025-07-31 20:39:44 +03:00

14 lines
204 B
Lua

local resp = Net.Http.Get(true, "https://google.com")
if resp then
Out.Result.answer = {
status = resp.status,
body = resp.body
}
return
end
Out.Result.answer = {
status = resp.status
}