Renamed the project to Umbraco.PublishedCache.NuCache - and move non NuCache related stuff to abstractions and infrastructure.
This commit is contained in:
18
src/Umbraco.PublishedCache.NuCache/NuCacheComponent.cs
Normal file
18
src/Umbraco.PublishedCache.NuCache/NuCacheComponent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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()
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user