mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 19:49:16 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
/**
|
|
* Main function
|
|
*/
|
|
const main = () => {
|
|
console.clear()
|
|
console.log(``)
|
|
console.log(`[PostInstall]: Esta es la 'main function'.`)
|
|
console.log(`[PostInstall]: 👌 Aquí podrías instalar cosas`)
|
|
console.log(``)
|
|
}
|
|
|
|
module.exports = main
|