mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 00:23:36 +01:00
10 lines
160 B
Go
10 lines
160 B
Go
//go:build !linux || android
|
|
|
|
package wgproxy
|
|
|
|
import "context"
|
|
|
|
func NewFactory(ctx context.Context, wgPort int) *Factory {
|
|
return &Factory{wgPort: wgPort}
|
|
}
|