diff --git a/src/Dotty.CLI/Commands/GenerateCommands.cs b/src/Dotty.CLI/Commands/GenerateCommands.cs index 5f8d65d..3c11187 100644 --- a/src/Dotty.CLI/Commands/GenerateCommands.cs +++ b/src/Dotty.CLI/Commands/GenerateCommands.cs @@ -23,7 +23,8 @@ public void Register(ICoconaAppBuilder app) Can generate random data from a template using the Bogus library. For example, `generate random fromtemplate '{{name.firstName(Male)}} {{name.lastName}}'` """); - }); + }) + .WithDescription("Contains commands to generate certain random data"); group.AddCommand("timestamp", (string format = "o") => Panel(DateTimeOffset.UtcNow.ToString(format))) .WithDescription("Generates a timestamp for the current datetime with an optional format string");