19 lines
422 B
Lua
19 lines
422 B
Lua
print([[
|
|
|
|
===============================================================================
|
|
examples:
|
|
===============================================================================
|
|
curl localhost:3000
|
|
=> Hello, World!
|
|
===============================================================================
|
|
]])
|
|
|
|
local app = create_app()
|
|
|
|
app:get("/", function(req, res)
|
|
res.body = "Hello, World!"
|
|
return res
|
|
end)
|
|
|
|
app:run(3000)
|