Initial implementation

This commit is contained in:
2025-12-10 11:10:52 +01:00
parent cff9defc4a
commit 4cb97a25ba
26 changed files with 2714 additions and 1 deletions

10
web/embed.go Normal file
View File

@@ -0,0 +1,10 @@
// Package web provides embedded static assets and templates.
package web
import "embed"
//go:embed all:templates
var TemplatesFS embed.FS
//go:embed all:static
var StaticFS embed.FS