1 implementation of IDocsCache
aspire (1)
Mcp\Docs\DocsCache.cs (1)
12internal sealed class DocsCache(IMemoryCache memoryCache, ILogger<DocsCache> logger) : IDocsCache
4 references to IDocsCache
aspire (3)
Mcp\Docs\DocsFetcher.cs (2)
27internal sealed class DocsFetcher(HttpClient httpClient, IDocsCache cache, ILogger<DocsFetcher> logger) : IDocsFetcher 32private readonly IDocsCache _cache = cache;
Program.cs (1)
188builder.Services.AddSingleton<IDocsCache, DocsCache>();
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
136services.AddSingleton<IDocsCache, DocsCache>();