package gui import "embed" // Assets embeds the built React frontend (frontend/dist/) into the // Go binary so a single drover.exe ships with no external files. // Build the frontend before `go build`: // // cd internal/gui/frontend && npm install && npm run build // // Then `go build ./cmd/drover` will pick up the fresh dist/ via this // directive. // //go:embed all:frontend/dist var Assets embed.FS