Files
Umbraco-CMS/src/Umbraco.Core/Cache/DistributedCacheBinderComponent.cs
2020-02-24 08:21:53 +01:00

23 lines
493 B
C#

using Umbraco.Core.Composing;
namespace Umbraco.Web.Cache
{
public class DistributedCacheBinderComponent : IComponent
{
private readonly IDistributedCacheBinder _binder;
public DistributedCacheBinderComponent(IDistributedCacheBinder distributedCacheBinder)
{
_binder = distributedCacheBinder;
}
public void Initialize()
{
_binder.BindEvents();
}
public void Terminate()
{ }
}
}