mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-25 08:09:30 +01:00
9 lines
242 B
Go
9 lines
242 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
|
||
|
IFaces() (string, error)
|
||
|
}
|