jtr/DevDisciples.Json.Tools.CLI/RootCommand.cs

14 lines
431 B
C#

namespace DevDisciples.Json.Tools.CLI;
public class RootCommand : System.CommandLine.RootCommand
{
public override string Name => "jtr";
public RootCommand() : base("A JSON transform CLI tool by DevDisciples.")
{
AddCommand(new JsonUglifyCommand());
AddCommand(new JsonBeautifyCommand());
AddCommand(new Json2CSharpCommand());
AddCommand(new JsonPathCommand());
}
}