Rename Feedser to Concelier
This commit is contained in:
23
src/StellaOps.Concelier.Exporter.Json/JsonExporterPlugin.cs
Normal file
23
src/StellaOps.Concelier.Exporter.Json/JsonExporterPlugin.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using StellaOps.Concelier.Storage.Mongo.Advisories;
|
||||
using StellaOps.Plugin;
|
||||
|
||||
namespace StellaOps.Concelier.Exporter.Json;
|
||||
|
||||
public sealed class JsonExporterPlugin : IExporterPlugin
|
||||
{
|
||||
public string Name => JsonFeedExporter.ExporterName;
|
||||
|
||||
public bool IsAvailable(IServiceProvider services)
|
||||
{
|
||||
ArgumentNullException.ThrowIfNull(services);
|
||||
return services.GetService<IAdvisoryStore>() is not null;
|
||||
}
|
||||
|
||||
public IFeedExporter Create(IServiceProvider services)
|
||||
{
|
||||
ArgumentNullException.ThrowIfNull(services);
|
||||
return ActivatorUtilities.CreateInstance<JsonFeedExporter>(services);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user