794ed8061c
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>
8 lines
153 B
Go
8 lines
153 B
Go
//go:build !linux
|
|
|
|
package desktop
|
|
|
|
func InstallDesktopIntegration(appID string, executablePath string, icon []byte) (string, error) {
|
|
return "", nil
|
|
}
|