1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/registry/registry.go

50 lines
899 B
Go
Raw Normal View History

2015-01-14 01:31:27 +02:00
package registry
type Registry interface {
Register(*Service) error
Deregister(*Service) error
GetService(string) (*Service, error)
ListServices() ([]*Service, error)
}
type Service struct {
Name string
2015-05-26 23:39:48 +02:00
Metadata map[string]string
Nodes []*Node
}
type Node struct {
Id string
Address string
Port int
2015-05-26 23:39:48 +02:00
Metadata map[string]string
2015-01-14 01:31:27 +02:00
}
type options struct{}
type Option func(*options)
2015-01-14 01:31:27 +02:00
var (
DefaultRegistry = newConsulRegistry([]string{})
2015-01-14 01:31:27 +02:00
)
func NewRegistry(addrs []string, opt ...Option) Registry {
return newConsulRegistry(addrs, opt...)
}
func Register(s *Service) error {
2015-01-14 01:31:27 +02:00
return DefaultRegistry.Register(s)
}
func Deregister(s *Service) error {
2015-01-14 01:31:27 +02:00
return DefaultRegistry.Deregister(s)
}
func GetService(name string) (*Service, error) {
2015-01-14 01:31:27 +02:00
return DefaultRegistry.GetService(name)
}
func ListServices() ([]*Service, error) {
return DefaultRegistry.ListServices()
}