mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
6 lines
130 B
Go
6 lines
130 B
Go
package tcpgateway
|
|
|
|
type ILoadBalance interface {
|
|
SelectNode(serviceName string) int //选择一个结点,通过服务名称
|
|
}
|