jtr/Jtr.Tools.CLI/RootCommand.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

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