All checks were successful
Run the JSON parser tests / test (push) Has been skipped
14 lines
417 B
C#
14 lines
417 B
C#
namespace Jtr.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());
|
|
}
|
|
} |