mirror of
https://github.com/sern-handler/cli
synced 2026-06-26 09:42:22 +00:00
19 lines
476 B
TypeScript
19 lines
476 B
TypeScript
import { cyanBright, green, magentaBright } from 'colorette';
|
|
|
|
export function help() {
|
|
return `
|
|
___ ___ _ __ _ __
|
|
/ __|/ _ \\ '__| '_ \\
|
|
\\__ \\ __/ | | | | |
|
|
|___/\\___|_| |_| |_|
|
|
|
|
Welcome!
|
|
If you're new to ${cyanBright('sern')}, run ${magentaBright(
|
|
'npm create @sern/bot'
|
|
)} for an interactive setup to your new bot project!
|
|
|
|
${green(
|
|
`If you have any ideas, suggestions, bug reports, kindly join our support server: https://sern.dev/discord`
|
|
)}`;
|
|
}
|