engine/types/etcd.go

13 lines
225 B
Go

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