// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace AzureMcp.Acr.Services;
public interface IAcrService
{
Task<List<Models.AcrRegistryInfo>> ListRegistries(
string subscription,
string? resourceGroup = null,
string? tenant = null,
RetryPolicyOptions? retryPolicy = null);
Task<Dictionary<string, List<string>>> ListRegistryRepositories(
string subscription,
string? resourceGroup = null,
string? registry = null,
string? tenant = null,
RetryPolicyOptions? retryPolicy = null);
}