mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
9 lines
126 B
Go
9 lines
126 B
Go
package tcpgateway
|
|
|
|
type LoadBalance struct {
|
|
}
|
|
|
|
func (balance *LoadBalance) SelectNode(serviceName string) int {
|
|
return 1
|
|
}
|