mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-02 04:53:51 +01:00
12 lines
237 B
Go
12 lines
237 B
Go
//go:build !android
|
|
|
|
package peer
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func newStdNet(_ stdnet.ExternalIFaceDiscover, ifaceBlacklist []string) (*stdnet.Net, error) {
|
|
return stdnet.NewNet(ifaceBlacklist)
|
|
}
|