// Package assets embeds the TeleportFling application icon. // // The PNGs live in the repository assets/ directory and are generated by // cmd/teleportfling-icon. Embedding keeps the icon with the binary so the GUI // and tray never depend on a runtime file path. package assets import _ "embed" // AppIcon256 is the 256px application icon. // //go:embed teleportfling-256.png var AppIcon256 []byte // AppIcon64 is the 64px icon used by the system tray. // //go:embed teleportfling-64.png var AppIcon64 []byte // AppIcon is the full-resolution (512px) application icon. // //go:embed teleportfling.png var AppIcon []byte