netbird/cmd/config.go

17 lines
324 B
Go
Raw Normal View History

package cmd
2021-04-14 14:20:25 +02:00
type Config struct {
// Wireguard private key of local peer
2021-04-15 14:57:15 +02:00
PrivateKey string
2021-04-14 14:20:25 +02:00
// configured remote peers (Wireguard public keys)
2021-04-15 14:57:15 +02:00
Peers string
StunURL string
TurnURL string
TurnUser string
TurnPwd string
2021-04-14 14:20:25 +02:00
// host:port of the signal server
SignalAddr string
WgAddr string
WgIface string
2021-04-14 14:20:25 +02:00
}