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