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
+12
View File
@@ -0,0 +1,12 @@
import chalk from "chalk"
const commandList = ['anime <name="string", option="string">']
export default function help(subcommand = []) {
if (subcommand.length != 0) {
console.log(chalk.green(commandList[commandList.indexOf(subcommand)]))
} else {
for (const i of commandList) {
console.log(chalk.cyanBright(i));
}
}
}