netbird/client/internal/stdnet/iface_discover.go

9 lines
242 B
Go
Raw Normal View History

package stdnet
// IFaceDiscover provide an option for external services (mobile)
// to collect network interface information
type IFaceDiscover interface {
// IFaces return with the description of the interfaces
IFaces() (string, error)
}