Resvolution - HealthCheckResolver

This commit is contained in:
Stephan
2016-08-13 12:58:58 +02:00
parent ebaeb98a4a
commit d8d736edda
8 changed files with 64 additions and 71 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using Umbraco.Core.DependencyInjection;
namespace Umbraco.Web.HealthCheck
{
public class HealthCheckCollection : BuilderCollectionBase<HealthCheck>
{
public HealthCheckCollection(IEnumerable<HealthCheck> items)
: base(items)
{ }
}
}