large changes

This commit is contained in:
2026-01-04 16:27:39 -05:00
parent 608a083861
commit 0a0b1fa8c3
12 changed files with 273 additions and 109 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