mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 22:23:03 +00:00
01c14a5994
* add Round-Robin Strategy * clean up
8 lines
145 B
Go
8 lines
145 B
Go
package conf
|
|
|
|
const (
|
|
strategyRandom string = "random"
|
|
strategyLeastPing string = "leastping"
|
|
strategyRoundRobin string = "roundrobin"
|
|
)
|