engine/types/etcd.go

13 lines
261 B
Go
Raw Normal View History

2024-02-11 01:31:01 +08:00
package types
type Etcd struct {
2024-10-03 20:47:47 +08:00
Endpoints []string `json:"Endpoints"`
2024-10-03 20:52:35 +08:00
Tls EtcdTls `json:"Tls,optional"`
2024-02-11 01:31:01 +08:00
}
type EtcdTls struct {
2024-10-03 20:52:35 +08:00
Ca string `json:"Ca,optional"`
Cert string `json:"Cert,optional"`
CertKey string `json:"CertKey,optional" `
2024-02-11 01:31:01 +08:00
}