aboutsummaryrefslogtreecommitdiff
path: root/src/server/routes/slack.js
blob: 8b6ba5a1def78f4154b4434338093384d63c8bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
const express = require('express')
const router = express.Router()

router.all('/', function (req, res, next) {
  res.json({
    "response_type": "in_channel",
    "text": "Will be implemented soon™!"
  })
})

module.exports = router