Includes just the basic get/send answers. No discord/google integration at the moment or other functionalities.
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
import chalk from 'chalk';
|
|
|
|
export const LOG_TYPES = {
|
|
ERROR: chalk.bold.red,
|
|
SUCCESS: chalk.greenBright,
|
|
INFO: chalk.cyan,
|
|
WARNING: chalk.yellow,
|
|
};
|