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

19 lines
411 B
C#
Raw Normal View History

2019-02-14 09:15:47 +01:00
using Umbraco.Core.Composing;
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
}
2019-01-07 09:30:47 +01:00
public void Initialize()
{ }
public void Terminate()
{ }
}
}