17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
const fbTemplate = require('claudia-bot-builder/lib/facebook/format-message')
|
|
const {send} = require('./common')
|
|
|
|
const run = (msg, recipient) => {
|
|
const reply = new fbTemplate.Text(
|
|
`Sorry, ${
|
|
recipient.first_name
|
|
}. I am a young Bot and still learning. Type "Start" to show the start over.`
|
|
).get()
|
|
send(recipient.id, reply)
|
|
}
|
|
|
|
module.exports = {
|
|
keywords: [],
|
|
run,
|
|
}
|