Files
origin/sysservice/tcpgateway/LoadBalance.go

9 lines
122 B
Go

package tcpgateway
type LoadBalance struct {
}
func (slf *LoadBalance) SelectNode(serviceName string) int {
return 1
}