// Package web provides embedded filesystem access to the web UI assets // (HTML templates and static files). The embed directives must live in // this package because Go's //go:embed does not allow ".." path components; // internal/ui imports these variables instead. package web import "embed" //go:embed all:templates var TemplateFS embed.FS //go:embed all:static var StaticFS embed.FS