Peradventure/app.lua

43 lines
334 B
Lua
Raw Normal View History

2024-03-16 18:29:52 -05:00
local lapis = require("lapis")
local app = lapis.Application()
2024-03-16 20:00:13 -05:00
local say = require('lua_scripts/main')
2024-03-16 18:29:52 -05:00
app:enable("etlua")
2024-03-16 20:32:35 -05:00
app:post("/clickme", function(self)
self.plane = "P-38L"
return self.plane
end)
2024-03-16 20:00:13 -05:00
app:get("/", function(self)
self.text = say.hello()
2024-03-16 18:29:52 -05:00
return {render = "index"}
end)
return app
2024-03-16 20:00:13 -05:00
2024-03-16 20:32:35 -05:00
2024-03-16 20:00:13 -05:00