audit notes work completed, test fixes work (95% done), new sprints, new data sources setup and configuration
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using StellaOps.Doctor.Plugins;
|
||||
|
||||
namespace StellaOps.Doctor.Plugins.Authority.DependencyInjection;
|
||||
|
||||
/// <summary>
|
||||
/// Extension methods for registering the Authority Doctor plugin.
|
||||
/// </summary>
|
||||
public static class AuthorityPluginExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Adds the Authority Doctor plugin to the service collection.
|
||||
/// </summary>
|
||||
public static IServiceCollection AddAuthorityDoctorPlugin(this IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton<IDoctorPlugin, AuthorityPlugin>();
|
||||
return services;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user