mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-18 14:20:28 +00:00
13 lines
328 B
Go
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")
|
|
}
|