import chalk from 'chalk'

export function success(title: string) {
  console.log(chalk.green(title))
}
