13 lines
259 B
Go
13 lines
259 B
Go
|
package types
|
||
|
|
||
|
type Etcd struct {
|
||
|
Endpoints []string `json:"endpoints"`
|
||
|
Tls EtcdTls `json:",optional"`
|
||
|
}
|
||
|
|
||
|
type EtcdTls struct {
|
||
|
Ca string `json:"ca,optional"`
|
||
|
Cert string `json:"cert,optional"`
|
||
|
CertKey string `json:"cert_key,optional" `
|
||
|
}
|