initial commit

This commit is contained in:
ION606
2023-02-26 15:16:21 -05:00
commit a1db1a1400
10 changed files with 772 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import chalk from "chalk";
export default function generateQuery(context) {
var query;
if (context == "animeep") {
query = "To dump all data enter ";
query += chalk.red("dumpdata");
query += `\nTo get the anime description enter ${chalk.green("desc")}`;
query += "\nTo dump episode data enter ";
query += chalk.yellow("episodes-all");
query += ", therwise, enter the " + chalk.yellow("episode number\n");
query += chalk.italic("Note: to compile with an episode number use");
query += chalk.blueBright(" --anime name=\"name\" episode=#\n");
}
return query;
}