Files
cli/src/commands/help.js
2022-07-03 09:36:31 +05:30

20 lines
526 B
JavaScript

import { cyanBright, green, yellowBright } from 'colorette';
export function help() {
return `
___ ___ _ __ _ __
/ __|/ _ \\ '__| '_ \\
\\__ \\ __/ | | | | |
|___/\\___|_| |_| |_|
Welcome!
If you're new to ${cyanBright('sern')}, run ${yellowBright(
'sern init'
)} for an interactive setup to your new bot project!
${green(
`If you have any ideas, suggestions, bug reports, kindly join our support server: https://discord.gg/xzK5fUKT4r`
)}
`;
}