mirror of
https://github.com/haskell-servant/servant-ekg.git
synced 2024-11-01 08:49:42 +01:00
8 lines
126 B
Lua
8 lines
126 B
Lua
|
counter = 0
|
||
|
|
||
|
request = function()
|
||
|
path = "/hello/" .. counter
|
||
|
counter = counter + 1
|
||
|
return wrk.format(nil, path)
|
||
|
end
|