mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-11 17:18:28 +02:00
12 lines
189 B
Go
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)
|
|
}
|