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
169 B
Go
13 lines
169 B
Go
//go:build !windows && ((!darwin && !freebsd) || cgo)
|
|
|
|
package main
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed icon.png
|
|
var iconPNG []byte
|
|
|
|
func getIcon() []byte {
|
|
return iconPNG
|
|
}
|