using LANCommander.SDK.Plugins;
namespace LANCommander.SamplePlugin;
///
/// Registers the sample plugin's cmdlets (and optionally PowerShell modules) into the runspace used
/// by LANCommander scripts.
///
public sealed class SamplePowerShellExtension : IPluginPowerShellExtension
{
public IEnumerable GetCmdletTypes() => new[] { typeof(SampleGreetingCmdlet) };
public IEnumerable GetModulePaths() => Array.Empty();
}