1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/registry/consul_node.go

21 lines
298 B
Go
Raw Normal View History

2015-01-14 01:31:27 +02:00
package registry
type ConsulNode struct {
Node string
NodeId string
NodeAddress string
NodePort int
}
func (c *ConsulNode) Id() string {
return c.NodeId
}
func (c *ConsulNode) Address() string {
return c.NodeAddress
}
func (c *ConsulNode) Port() int {
return c.NodePort
}