18 lines
313 B
Go
18 lines
313 B
Go
//go:build !windows && !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func platformServerOptions(daemon *Daemon) ([]grpc.ServerOption, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func platformFallbackPeerIdentity(ctx context.Context) (peerIdentity, error) {
|
|
return peerIdentity{UserID: "local"}, nil
|
|
}
|