mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-30 12:05:29 +01:00
8 lines
121 B
Go
8 lines
121 B
Go
|
//go:build !linux || android
|
||
|
|
||
|
package wgproxy
|
||
|
|
||
|
func NewFactory(wgPort int) *Factory {
|
||
|
return &Factory{wgPort: wgPort}
|
||
|
}
|