using Microsoft.Extensions.DependencyInjection;
using StellaOps.Doctor.Plugins;
namespace StellaOps.Doctor.Plugins.Cryptography.DependencyInjection;
///
/// Extension methods for registering the Cryptography diagnostics plugin.
///
public static class CryptographyPluginExtensions
{
///
/// Adds the Cryptography diagnostics plugin to the service collection.
///
/// The service collection.
/// The service collection for chaining.
public static IServiceCollection AddDoctorCryptographyPlugin(this IServiceCollection services)
{
services.AddSingleton();
return services;
}
}