Files
enm-cli/util/banner.js
Vyacheslav.Sviridov fc41ae955f first alpha
2022-06-09 20:52:09 +06:00

11 lines
224 B
JavaScript
Executable File

function banner(params) {
console.log(`
If you see this, pls, send me this message:
${JSON.stringify(params, null, 2)}
If you see this, pls, send me this message:
`)
}
module.exports = banner