mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
/**
|
|
* Main function
|
|
*/
|
|
const main = () => {
|
|
console.clear()
|
|
console.log(``)
|
|
console.log(`[PostInstall]: Este es el main function.`)
|
|
console.log(`[PostInstall]: 👌 Aqui podrias instalar cosas`)
|
|
console.log(``)
|
|
}
|
|
|
|
module.exports = main
|