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 JsonPrettifyCommand()); AddCommand(new Json2CSharpCommand()); } }