Files
Umbraco-CMS/src/Umbraco.Web/PublishedCache/NuCache/NuCacheComponent.cs

13 lines
313 B
C#
Raw Normal View History

using Umbraco.Core.Components;
namespace Umbraco.Web.PublishedCache.NuCache
{
2019-01-03 21:00:28 +01:00
public class NuCacheComponent : IComponent
{
2017-10-31 12:48:24 +01:00
public void Initialize(IPublishedSnapshotService service)
{
// nothing - this just ensures that the service is created at boot time
}
}
}