11 lines
337 B
Go
11 lines
337 B
Go
package main
|
|
|
|
// EmbeddedIcon contains the icon data
|
|
// To generate this, run: go run embedicon.go
|
|
var EmbeddedIcon = []byte{
|
|
// Replace this with your actual icon bytes
|
|
// You can use a tool or script to convert syncup.ico to byte array
|
|
// For now, using minimal PNG as placeholder
|
|
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A,
|
|
}
|