Files
mixtape/zero.Core/Integrations/IntegrationService.cs
T
2021-11-19 12:03:36 +01:00

18 lines
480 B
C#

using Microsoft.Extensions.Logging;
using zero.Core.Collections;
using zero.Core.Options;
namespace zero.Core.Integrations
{
public class IntegrationService : IntegrationsCollection, IIntegrationService
{
public IntegrationService(IZeroOptions options, ICollectionContext context, ILogger<IntegrationsCollection> logger) : base(context, options, logger)
{
OnlyActive = true;
}
}
public interface IIntegrationService : IIntegrationsCollection { }
}