Browse Source

Wrote generate text command-method.

master
Craig Oates 6 years ago
parent
commit
1c86e361d5
  1. 4
      WetPancakeCLI/ConsoleCommands.cs

4
WetPancakeCLI/ConsoleCommands.cs

@ -36,9 +36,9 @@ namespace WetPancakeCLI
return result;
}
public static string test1()
public static string GenerateText(int gibberishLevel, int sentences)
{
var result = RequestRandomText();
var result = RequestText(gibberishLevel, sentences);
return result;
}
}

Loading…
Cancel
Save