Add raster Easy Bee branding assets

This commit is contained in:
2026-04-14 22:39:25 +03:00
parent 3cf2e9c9dc
commit d560b2fead
8 changed files with 30 additions and 134 deletions

View File

@@ -0,0 +1,15 @@
package webui
import (
_ "embed"
"net/http"
)
//go:embed easy-bee-logo.png
var easyBeeLogoPNG []byte
func (h *handler) handleEasyBeeLogo(w http.ResponseWriter, _ *http.Request) {
w.Header().Set("Cache-Control", "public, max-age=3600")
w.Header().Set("Content-Type", "image/png")
_, _ = w.Write(easyBeeLogoPNG)
}