mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-01 12:33:53 +01:00
17 lines
324 B
Go
17 lines
324 B
Go
package cmd
|
|
|
|
type Config struct {
|
|
// Wireguard private key of local peer
|
|
PrivateKey string
|
|
// configured remote peers (Wireguard public keys)
|
|
Peers string
|
|
StunURL string
|
|
TurnURL string
|
|
TurnUser string
|
|
TurnPwd string
|
|
// host:port of the signal server
|
|
SignalAddr string
|
|
WgAddr string
|
|
WgIface string
|
|
}
|