using System; using StellaOps.Plugin; namespace StellaOps.Scanner.Analyzers.Lang.Plugin; /// /// Represents a restart-time plug-in that exposes a language analyzer. /// public interface ILanguageAnalyzerPlugin : IAvailabilityPlugin { /// /// Creates the analyzer instance bound to the service provider. /// ILanguageAnalyzer CreateAnalyzer(IServiceProvider services); }