using System; using StellaOps.Scanner.Analyzers.Lang.Plugin; namespace StellaOps.Scanner.Analyzers.Lang.Python; public sealed class PythonAnalyzerPlugin : ILanguageAnalyzerPlugin { public string Name => "StellaOps.Scanner.Analyzers.Lang.Python"; public bool IsAvailable(IServiceProvider services) => services is not null; public ILanguageAnalyzer CreateAnalyzer(IServiceProvider services) { ArgumentNullException.ThrowIfNull(services); return new PythonLanguageAnalyzer(); } }