T1.7: Create src/platform/desktop; move desktop integration

Move desktop_linux.go and desktop_other.go from src/core to the new
src/platform/desktop package. Update src/gui to import and use the
new package location.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
mixeme
2026-06-18 22:37:47 +03:00
parent 16d818d03d
commit 794ed8061c
3 changed files with 4 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
//go:build !linux
package desktop
func InstallDesktopIntegration(appID string, executablePath string, icon []byte) (string, error) {
return "", nil
}