type Pool interface {
// Healthy returns the full list of Healthy Targets Healthy() []http.Handler// SetHealthy sets the Healthy Targets List SetHealthy([]http.Handler)
// Stop stops the pool and its health checker goroutines Stop()
}
Pool defines the interface for a load balancer pool