tchoutchou/examples/hello.lua
ato 39f9d2682b
All checks were successful
continuous-integration/drone/push Build is passing
chore: move examples
2023-02-14 12:26:28 +01:00

9 lines
125 B
Lua

local app = create_app()
app:get("/hello", function(req, res)
res.body = "Hello, World!"
return res
end)
app:run(3000)