// Package web embeds static assets and templates for the KAOS dashboard. package web import "embed" // StaticFS contains embedded static files (htmx, sortable, css). // //go:embed static/* var StaticFS embed.FS // TemplatesFS contains embedded HTML templates. // //go:embed templates/*.html templates/partials/*.html var TemplatesFS embed.FS