Files
Strix/www/static.go
T
eduard256 8294736bcb Embed icons directory in static assets
Frontend needs access to icons (e.g. mihome.webp for Xiaomi page).
The //go:embed directive was limited to *.html only, so binary
assets in www/icons/ were never served.
2026-04-18 08:07:35 +00:00

7 lines
73 B
Go

package www
import "embed"
//go:embed *.html icons
var Static embed.FS