mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
10 lines
359 B
Go
10 lines
359 B
Go
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
|
|
// todo refactor this to return []*transport.Interface instead to have it generic and independent from the platform
|
|
IFaces() (string, error)
|
|
}
|