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