mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 07:04:50 -06:00
21 lines
494 B
JavaScript
21 lines
494 B
JavaScript
module.exports = () => {
|
|
// welcome message
|
|
console.log(`👋 Welcome to evolution-manager CLI!`)
|
|
|
|
// help message
|
|
console.log(`📋 Available commands:`)
|
|
console.log(` help`)
|
|
console.log(` server`)
|
|
console.log(` - start [--port=9615]`)
|
|
console.log(` - build`)
|
|
console.log(` pm2`)
|
|
console.log(` - setup`)
|
|
console.log(` - start`)
|
|
console.log(` - stop`)
|
|
console.log(` - restart`)
|
|
console.log(` - delete`)
|
|
|
|
|
|
// spacing
|
|
console.log(`\n`)
|
|
} |