blob: e2e8746b6dd0a8e20d399132b6f1ceef20511da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--
-- Create some simple bindings for the LuaTask system to hide the various ugly yields.
--
function HttpClient(url)
return coroutine.yield("HttpClient", url)
end
function Command(command, ...)
return coroutine.yield("Command", command, unpack(arg))
end
|