mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
14 lines
274 B
Go
14 lines
274 B
Go
//go:build !android
|
|
|
|
package ice
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func newStdNet(ctx context.Context, _ stdnet.ExternalIFaceDiscover, ifaceBlacklist []string) (*stdnet.Net, error) {
|
|
return stdnet.NewNet(ctx, ifaceBlacklist)
|
|
}
|