cmd/mbf: package status dashboard

This displays package metadata with optional status from a report.
This commit is contained in:
mae
2026-03-04 22:50:58 -06:00
committed by Ophestra
parent e61628a34e
commit 1d5d063d6a
16 changed files with 1189 additions and 21 deletions

View File

@@ -0,0 +1,21 @@
//go:build frontend
package ui
import (
"embed"
"io/fs"
)
//go:generate tsc
//go:generate cp index.html style.css static
//go:embed static
var _static embed.FS
var static = func() fs.FS {
if f, err := fs.Sub(_static, "static"); err != nil {
panic(err)
} else {
return f
}
}()