initial commit

This commit is contained in:
2025-05-07 20:01:04 +03:00
commit 497ec62990
6 changed files with 136 additions and 0 deletions

8
app.lua Normal file
View File

@@ -0,0 +1,8 @@
local lapis = require("lapis")
local app = lapis.Application()
app:get("/", function()
return "Welcome to Lapis " .. require("lapis.version")
end)
return app