engine/types/etcd.go

13 lines
261 B
Go

package types
type Etcd struct {
Endpoints []string `json:"Endpoints"`
Tls EtcdTls `json:"Tls,optional"`
}
type EtcdTls struct {
Ca string `json:"Ca,optional"`
Cert string `json:"Cert,optional"`
CertKey string `json:"CertKey,optional" `
}