WIP broken stage

This commit is contained in:
2026-01-06 15:40:30 -05:00
parent 85bd564164
commit 2c2dc57453
32 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
local fes = require("fes")
local site = fes.fes()
site.copyright = fes.util.copyright("https://fsd.vxserver.dev/", "fSD")
site:extend("myext", {
shout = function(self, str) return self:g(str:upper()) end
})
site.myext:shout("hello world")
return site