add version to manager

This commit is contained in:
Gabriel Pastori
2023-11-21 12:49:02 -03:00
parent c2065ff526
commit 0a1c713421
5 changed files with 36 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ module.exports = () => {
console.log(`📘 Here's what you can do with evolution-manager CLI:`);
// Server commands
console.log(`\n🖥️ Server Commands:`);
console.log(`\n🚀 Server Commands:`);
console.log(` help - Get help and command summaries`);
console.log(` server - Manage your server`);
console.log(` - start [--port=9615] - Start the server on a specific port`);
@@ -30,5 +30,5 @@ module.exports = () => {
// Documentation link and disclaimer
console.log(`\n📚 For complete documentation, visit: https://github.com/gabrielpastori1/evolution-manager`);
console.log(`\n Disclaimer: This evolution-manager CLI project is independent and not affiliated with the evolution-api project.`);
console.log(`\nDisclaimer: This evolution-manager CLI project is independent and not affiliated with the evolution-api project.`);
};