Browse Source

Stubbed out Generate Random Text command-method.

master
Craig Oates 6 years ago
parent
commit
ced2fa2fb8
  1. 9
      WetPancakeCLI/ConsoleCommands.cs

9
WetPancakeCLI/ConsoleCommands.cs

@ -24,5 +24,14 @@ namespace WetPancakeCLI
[Parameters("none")]
[Usage("> Exit")]
public static void Exit() => Environment.Exit(ExitCode);
[ListCommand]
[Description("Generates random text, the number of sentences generated is determined by the user.")]
[Parameters("int: sentenences")]
[Usage("> GenerateRandomText")]
public static string GenerateRandomText(int sentences)
{
return "Not implemented yet.";
}
}
}

Loading…
Cancel
Save