mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
a10036a7f1
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.
13 lines
134 B
Go
13 lines
134 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed icon.ico
|
|
var iconICO []byte
|
|
|
|
func getIcon() []byte {
|
|
return iconICO
|
|
}
|