This commit is contained in:
2021-11-20 13:52:28 +01:00
parent be9ad9d335
commit 2d6d798771
367 changed files with 4840 additions and 7501 deletions
@@ -0,0 +1,14 @@
using Microsoft.Extensions.Logging;
namespace zero.Configuration;
public class IntegrationService : IntegrationsCollection, IIntegrationService
{
public IntegrationService(ICollectionContext<Integration> context, ILogger<IntegrationsCollection> logger) : base(context, logger)
{
Options = new(false);
}
}
public interface IIntegrationService : IIntegrationsCollection { }