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

13 lines
321 B
C#
Raw Normal View History

using Umbraco.Core.Components;
namespace Umbraco.Web.PublishedCache.NuCache
{
2019-01-04 08:36:38 +01:00
public sealed class NuCacheComponent : IComponent
{
2019-01-04 08:36:38 +01:00
public NuCacheComponent(IPublishedSnapshotService service)
{
// nothing - this just ensures that the service is created at boot time
}
}
}