Files
aiolauncher_scripts/community/net-file.lua
2021-08-31 19:43:38 +03:00

20 lines
325 B
Lua

-- name = "Network file"
function on_resume()
local args = settings:get()
if next(args) == nil then
ui:show_text("Tap to enter text file URL")
else
http:get(args[1])
end
end
function on_click()
aio:show_args_dialog()
end
function on_network_result(result)
ui:show_text(result)
end