blob: 0f9aaf4e4b44866c8932196d2328d4ea29b887c5 (
plain)
1
2
3
4
5
6
|
--- Default client request handler.
--- @param request string Unparsed request from the client
--- @return string Body of the response
function Handler (request)
return [["Hello, from plop/Lua"]]
end
|