Files
mixtape/zero.Core/Integrations/IntegrationService.cs
T

16 lines
411 B
C#

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