Files
Umbraco-CMS/src/Umbraco.Web/PublishedCache/NuCache/NuCacheComponent.cs
2019-01-03 21:00:28 +01:00

13 lines
313 B
C#

using Umbraco.Core.Components;
namespace Umbraco.Web.PublishedCache.NuCache
{
public class NuCacheComponent : IComponent
{
public void Initialize(IPublishedSnapshotService service)
{
// nothing - this just ensures that the service is created at boot time
}
}
}