mirror of https://github.com/status-im/consul.git
10 lines
225 B
Go
10 lines
225 B
Go
|
package structs
|
||
|
|
||
|
// PeeringToken identifies a peer in order for a connection to be established.
|
||
|
type PeeringToken struct {
|
||
|
CA []string
|
||
|
ServerAddresses []string
|
||
|
ServerName string
|
||
|
PeerID string
|
||
|
}
|