File: Internal\HybridCacheBuilder.cs | Web Access |
Project: src\src\Libraries\Microsoft.Extensions.Caching.Hybrid\Microsoft.Extensions.Caching.Hybrid.csproj (Microsoft.Extensions.Caching.Hybrid) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.Extensions.Caching.Hybrid.Internal; internal sealed class HybridCacheBuilder : IHybridCacheBuilder { public HybridCacheBuilder(IServiceCollection services) { Services = services; } public IServiceCollection Services { get; } } |