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