Files
Umbraco-CMS/src/Umbraco.Web/Cache/DistributedCacheBinderComponent.cs

13 lines
305 B
C#
Raw Normal View History

2019-01-03 21:00:28 +01:00
using Umbraco.Core.Components;
namespace Umbraco.Web.Cache
{
2019-01-03 21:00:28 +01:00
public class DistributedCacheBinderComponent : IComponent
{
2019-01-03 21:00:28 +01:00
public DistributedCacheBinderComponent(IDistributedCacheBinder distributedCacheBinder)
{
distributedCacheBinder.BindEvents();
}
}
}