Codebase list golang-github-go-kit-kit / 0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.4.0 sd / fixed_subscriber.go
0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.4.0

Tree @0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.4.0 (Download .tar.gz)

fixed_subscriber.go @0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.4.0raw · history · blame

1
2
3
4
5
6
7
8
9
package sd

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

// FixedSubscriber yields a fixed set of services.
type FixedSubscriber []endpoint.Endpoint

// Endpoints implements Subscriber.
func (s FixedSubscriber) Endpoints() ([]endpoint.Endpoint, error) { return s, nil }