-- -- 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