using StellaOps.Plugin;
using StellaOps.Scanner.Analyzers.OS.Abstractions;
using System;
namespace StellaOps.Scanner.Analyzers.OS.Plugin;
///
/// Represents a restart-time plug-in that publishes a single .
///
public interface IOSAnalyzerPlugin : IAvailabilityPlugin
{
///
/// Creates the analyzer instance bound to the host service provider.
///
IOSPackageAnalyzer CreateAnalyzer(IServiceProvider services);
}