19 lines
411 B
C#
19 lines
411 B
C#
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Web.PublishedCache.NuCache
|
|
{
|
|
public sealed class NuCacheComponent : IComponent
|
|
{
|
|
public NuCacheComponent(IPublishedSnapshotService service)
|
|
{
|
|
// nothing - this just ensures that the service is created at boot time
|
|
}
|
|
|
|
public void Initialize()
|
|
{ }
|
|
|
|
public void Terminate()
|
|
{ }
|
|
}
|
|
}
|