micro/registry/node.go
2015-01-13 23:31:27 +00:00

12 lines
189 B
Go

package registry
type Node interface {
Id() string
Address() string
Port() int
}
func NewNode(id, address string, port int) Node {
return DefaultRegistry.NewNode(id, address, port)
}