1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-11-29 21:47:44 +02:00

Merge pull request #206 from darren-west/master

Added Options() to registry interface
This commit is contained in:
Asim Aslam
2018-02-19 20:52:28 +00:00
committed by GitHub
4 changed files with 15 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ type Registry interface {
ListServices() ([]*Service, error)
Watch(...WatchOption) (Watcher, error)
String() string
Options() Options
}
type Option func(*Options)