// Package web embeds the built frontend assets so the Go binary can serve them // directly (single-binary deployment). The embed path is relative to this file, // so it must live alongside the dist/ directory. package web import "embed" // DistFS holds the built frontend (web/dist). `all:` includes the committed // .gitkeep placeholder, so this compiles even before `npm run build` runs. // //go:embed all:dist var DistFS embed.FS