All checks were successful
Run the JSON parser tests / test (push) Has been skipped
10 lines
306 B
C#
10 lines
306 B
C#
using System.CommandLine.Binding;
|
|
using Jtr.Tools.CLI.Extensions;
|
|
|
|
namespace Jtr.Tools.CLI;
|
|
|
|
public class CommandOptionsBinder : BinderBase<CommandOptions>
|
|
{
|
|
protected override CommandOptions GetBoundValue(BindingContext context) =>
|
|
new CommandOptions().WithCommonBindings(context);
|
|
} |