2024-03-27 23:08:40 +08:00

11 lines
137 B
Go

package checks
import "context"
type EtcdCheck struct{}
func CheckEtcd(ctx context.Context, config *EtcdCheck) error {
return nil
}