Files
picoclaw/web/backend/systray_icon_windows.go
T
wenjie a10036a7f1 refactor(web): clean up systray platform build files
Separate embedded tray icons into platform-specific files, rename the
no-cgo systray stub for consistency, and add the app version to the
launcher startup log.
2026-03-25 11:44:57 +08:00

13 lines
134 B
Go

//go:build windows
package main
import _ "embed"
//go:embed icon.ico
var iconICO []byte
func getIcon() []byte {
return iconICO
}