6 lines
253 B
C#
6 lines
253 B
C#
namespace HelloShop.ApiService.Infrastructure;
|
|
|
|
public interface IConfiguredServiceEndPointResolver
|
|
{
|
|
public Task<IReadOnlyCollection<ConfiguredServiceEndPoint>> GetConfiguredServiceEndpointsAsync(CancellationToken cancellationToken = default);
|
|
} |