8294736bcb
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.
7 lines
73 B
Go
7 lines
73 B
Go
package www
|
|
|
|
import "embed"
|
|
|
|
//go:embed *.html icons
|
|
var Static embed.FS
|