mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
13 lines
280 B
Go
13 lines
280 B
Go
package wiretrustee
|
|
|
|
import "golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
|
|
type Config struct {
|
|
// Wireguard private key of local peer
|
|
PrivateKey wgtypes.Key
|
|
// configured remote peers (Wireguard public keys)
|
|
Peers string
|
|
// host:port of the signal server
|
|
SignalAddr string
|
|
}
|