mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 16:43:29 +01:00
12 lines
165 B
Go
12 lines
165 B
Go
|
//go:build !android
|
||
|
|
||
|
package peer
|
||
|
|
||
|
import (
|
||
|
"github.com/pion/transport/v2/stdnet"
|
||
|
)
|
||
|
|
||
|
func (conn *Conn) newStdNet() (*stdnet.Net, error) {
|
||
|
return stdnet.NewNet()
|
||
|
}
|