mirror of
https://github.com/netbirdio/netbird.git
synced 2026-03-31 06:34:14 -04:00
12 lines
220 B
Go
12 lines
220 B
Go
//go:build !android
|
|
|
|
package internal
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/internal/stdnet"
|
|
)
|
|
|
|
func (e *Engine) newStdNet() (*stdnet.Net, error) {
|
|
return stdnet.NewNet(e.clientCtx, e.config.IFaceBlackList)
|
|
}
|