Add authority bootstrap flows and Concelier ops runbooks
This commit is contained in:
		| @@ -0,0 +1,21 @@ | ||||
| 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<CertBundConnector>() is not null; | ||||
|  | ||||
|     public IFeedConnector Create(IServiceProvider services) | ||||
|     { | ||||
|         ArgumentNullException.ThrowIfNull(services); | ||||
|         return services.GetRequiredService<CertBundConnector>(); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user