jtr/Jtr.Tools.CLI/CommandOptionsBinder.cs
mdnapo 96c203f842
All checks were successful
Run the JSON parser tests / test (push) Has been skipped
Moved UI to separate project, added Dockerfile & renamed project
2024-10-19 12:04:40 +02:00

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);
}