local index = require("index") math.randomseed(os.time()) local function route(path) if path == '/' then return 200, index() end return 404, Error 404

Error 404

Page not found.

end return { name = "hello-world", route = route }