1 2 3 4 5 6 7 8 9 10 11 12
init = function(args) local r = {} local depth = tonumber(args[1]) or 1 for i=1,depth do r[i] = wrk.format() end req = table.concat(r) end request = function() return req end