mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-09 07:52:11 +08:00
11 lines
137 B
Go
11 lines
137 B
Go
package checks
|
|
|
|
import "context"
|
|
|
|
type EtcdCheck struct{}
|
|
|
|
func CheckEtcd(ctx context.Context, config *EtcdCheck) error {
|
|
|
|
return nil
|
|
}
|