// Package web embeds the html/template tree and the static assets // (compiled Tailwind CSS) so the server is a single static binary. // // Templates live at templates/, static at static/. Both trees are // served by internal/server/ui and internal/server/http respectively. package web import "embed" // FS is the embedded view of every template + static asset under // this package. Consumed by internal/server/ui (templates) and // internal/server/http (static handler). // //go:embed templates/* static/* var FS embed.FS