hello-shop/src/HelloShop.ApiService/Infrastructure/IConfiguredServiceEndPointResolver.cs
2024-04-20 14:33:06 +08:00

6 lines
253 B
C#

namespace HelloShop.ApiService.Infrastructure;
public interface IConfiguredServiceEndPointResolver
{
public Task<IReadOnlyCollection<ConfiguredServiceEndPoint>> GetConfiguredServiceEndpointsAsync(CancellationToken cancellationToken = default);
}