require('@runkit/runkit/express-endpoint/1.0.0')(exports)
.post('/', require('body-parser')(), (req, res) => {
res.json({
text: `_${req.body.text}_?\n*${Math.ceil(Math.random()*100)}% sure ${Math.random()>0.5?'YES':'NO'}!*`,
response_type: 'in_channel'
})
})