line-api-cli
Version:
LINE API CLIs for Node.js
18 lines (12 loc) • 338 B
JavaScript
import colors from 'colors';
import { EOL } from 'os';
import ImageHelper from './image-helper';
import theme from './theme';
async function run() {
colors.setTheme(theme);
await ImageHelper.draw('chick-face');
console.log(
EOL + `Run ${'line init'.code} to initialize project configuration file.`.help + EOL
);
}
run();