package main import _ "embed" // uiHTML is the self-contained, read-only dashboard served at /ui. It is a single // vanilla-JS page (no external assets) that fetches the raw /runs and /export // data and does ALL filtering, drill-down, and scoring in the browser — keeping // the daemon a pure fact store (points/value-per-minute are computed client-side // from an editable curve). // //go:embed ui.html var uiHTML string