20 lines
427 B
Lua
20 lines
427 B
Lua
print([[
|
|
|
|
===============================================================================
|
|
examples:
|
|
===============================================================================
|
|
curl localhost:3000
|
|
===============================================================================
|
|
]])
|
|
|
|
|
|
local lib = require("require_lib")
|
|
|
|
local app = create_app()
|
|
|
|
app:get("/", function(req, res)
|
|
return lib.identity(res)
|
|
end)
|
|
|
|
app:run(3000)
|