mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
15 lines
292 B
Go
15 lines
292 B
Go
//go:build !(linux && 386)
|
|
|
|
package services
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/netbirdio/netbird/client/proto"
|
|
)
|
|
|
|
// GRPCClientIface is the interface services use to obtain a daemon client.
|
|
type GRPCClientIface interface {
|
|
GetClient(timeout time.Duration) (proto.DaemonServiceClient, error)
|
|
}
|