Codebase list golang-github-go-kit-kit / 8357da3 loadbalancer / publisher.go
8357da3

Tree @8357da3 (Download .tar.gz)

publisher.go @8357da3raw · history · blame

package loadbalancer

import "github.com/go-kit/kit/endpoint"

// Publisher describes something that provides a set of identical endpoints.
// Different publisher implementations exist for different kinds of service
// discovery systems.
type Publisher interface {
	Endpoints() ([]endpoint.Endpoint, error)
}