mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 08:12:25 +00:00
14 lines
204 B
Lua
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
|
|
}
|
|
|