engine/types/etcd.go

13 lines
225 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"`
Tls EtcdTls `json:"Tls"`
2024-02-11 01:31:01 +08:00
}
type EtcdTls struct {
2024-10-03 20:47:47 +08:00
Ca string `json:"Ca"`
Cert string `json:"Cert"`
CertKey string `json:"CertKey" `
2024-02-11 01:31:01 +08:00
}