Files

21 lines
366 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
namespace Ocelot.Provider.Nacos.NacosClient
{
public enum LBStrategyName
{
/// <summary>
/// Weight Round Robin
/// </summary>
WeightRoundRobin,
/// <summary>
/// Weight Random
/// </summary>
WeightRandom,
/// <summary>
/// Ext1
/// </summary>
Ext1
}
}