Files
netbird/cmd/wiretrustee/config.go
2021-04-14 14:20:25 +02:00

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
}