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
|
||
|
|
}
|