tested & working basic bot

This commit is contained in:
Darius
2025-09-27 16:12:50 +02:00
parent 44f3f7af0b
commit 10eee0c0fd
16 changed files with 161 additions and 127 deletions

View File

@@ -1,7 +1,5 @@
import chalk from "chalk";
const verbose = process.argv.includes("--verbose");
export function logError(...args: unknown[]) {
console.log(chalk.red(args));
}
@@ -15,7 +13,5 @@ export function logSuccess(...args: unknown[]) {
}
export function logInfo(...args: unknown[]) {
if (verbose) {
console.log(chalk.cyan(args));
}
console.log(chalk.cyan(args));
}