first commit

This commit is contained in:
Space-Banane
2026-01-17 15:19:07 +01:00
commit 4e637bc27d
15 changed files with 511 additions and 0 deletions

10
client/icon.go Normal file
View File

@@ -0,0 +1,10 @@
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,
}