keyboard.js
356 Bytes
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/keyboard', function(req, res, next) {
//메뉴
var choice = {
"type":"buttons",
"buttons": ["설정", "번역","사전"]
};
res.set({
'content-type': 'application/json'
}).send(JSON.stringigy(choice));
});
module.exports = router;