1
0
This repository has been archived on 2018-04-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vodopija-bot/bot/facebook/conversation.js

7 lines
150 B
JavaScript

const intents = require('./intents')
module.exports = async (message, recipient) => {
const run = intents.get(message)
run(message, recipient)
}