Files
clipboard-on-the-go/client/icon.go
Space-Banane 4e637bc27d first commit
2026-01-17 15:19:07 +01:00

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