5 lines
184 B
Lua
5 lines
184 B
Lua
add_route("/lua/test", function (req)
|
|
log("demo_route handling request for =>" .. (req.path or "unknown"))
|
|
return 200, {["Content-Type"] = "text/html"}, "<h1>Hello!</h1>"
|
|
end)
|