This commit is contained in:
2026-04-11 12:12:07 +02:00
parent 3bc6e2e080
commit 5b3c5ebb2f
92 changed files with 10948 additions and 35 deletions

13
web/embed.go Normal file
View File

@@ -0,0 +1,13 @@
package web
import (
"embed"
"io/fs"
)
//go:embed all:build
var StaticFiles embed.FS
func Assets() (fs.FS, error) {
return fs.Sub(StaticFiles, "build")
}