mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
25 lines
858 B
Plaintext
25 lines
858 B
Plaintext
{
|
|
"Flow Bot (simple)": {
|
|
"scope": "javascript",
|
|
"prefix": "bot:flow",
|
|
"description": "Crear un flujo simple",
|
|
"body": [
|
|
"export const flow${1} = addKeyword(['hola', 'buenas'])",
|
|
" .addAnswer('Hola! 🚀 Bienvenido a este CHATBOT')",
|
|
" .addAnswer('¿Como puedo ayudarte?')"
|
|
]
|
|
},
|
|
"Flow Bot (completo)": {
|
|
"scope": "javascript",
|
|
"prefix": "bot:flow completo",
|
|
"description": "Crear un flujo completo",
|
|
"body": [
|
|
"export const flow${1} = addKeyword(['categorias'])",
|
|
" .addAnswer('⚡ Tenemos las siguientes categorias')",
|
|
" .addAnswer(['🚀 Computadoras', '🚀 Celulares', '🚀 Otros'], {",
|
|
" delay: 1500, //Milisegundo 1500 = 1.5segundos",
|
|
"})"
|
|
]
|
|
}
|
|
}
|