You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Cli/Console/CommandConfiguratorExtensio...

12 lines
270 B

using Spectre.Console.Cli;
namespace Recyclarr.Cli.Console;
public static class CommandConfiguratorExtensions
{
public static ICommandConfigurator WithExample(this ICommandConfigurator cli, params string[] args)
{
return cli.WithExample(args);
}
}