using System; using Microsoft.Extensions.DependencyInjection; using StellaOps.Plugin; namespace StellaOps.Feedser.Source.CertBund; public sealed class CertBundConnectorPlugin : IConnectorPlugin { public const string SourceName = "cert-bund"; public string Name => SourceName; public bool IsAvailable(IServiceProvider services) => services.GetService() is not null; public IFeedConnector Create(IServiceProvider services) { ArgumentNullException.ThrowIfNull(services); return services.GetRequiredService(); } }