mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
12 lines
136 B
Go
12 lines
136 B
Go
package registry
|
|
|
|
type Watcher interface {
|
|
Next() (*Result, error)
|
|
Stop()
|
|
}
|
|
|
|
type Result struct {
|
|
Action string
|
|
Service *Service
|
|
}
|