using Nacos;
using Nacos.V2.Naming.Dtos;
using System.Collections.Generic;
namespace Ocelot.Provider.Nacos.NacosClient;
public interface ILBStrategy
{
///
/// Strategy Name
///
LBStrategyName Name { get; }
///
/// Get host
///
/// host list
/// The Host
Instance GetHost(List list);
}