5 lines
79 B
Lua
5 lines
79 B
Lua
function handle(r)
|
|
r.content_type = "text/plain"
|
|
r:puts("Hi there!")
|
|
end
|