Files
2026-07-14 21:33:15 +08:00

13 lines
328 B
Go

//go:build !windows
package main
import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func (d *Daemon) installUpdate(identity peerIdentity, installerPath string) (*InstallUpdateResponse, error) {
return nil, status.Error(codes.Unimplemented, "update installation is not supported on this platform")
}