Files
netbird/client/uiwails/services/grpc_iface.go
Zoltán Papp 04a982263d Wails UI
2026-03-02 15:59:09 +01:00

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)
}