// 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" //go:embed templates/* static/* var FS embed.FS