type Pinger interface {
// Init makes any needed by implementation initialization work Init(urls ...string) error// Ping makes a ping call to the service to check it's liveness Ping(ctx context.Context, url string) error
}
Pinger is responsible for checking services liveness.