JKL

Update_meal_planner

Showing 1 changed file with 17 additions and 0 deletions
......@@ -32,6 +32,23 @@ app.post('/message', (req, res) => {
}]
}
}
}else if (question == "국제캠퍼스") {
data = {
'version': '2.0',
'template': {
'outputs': [{
'simpleImage': {
'imageUrl': "https://coop.khu.ac.kr/wp-content/uploads/2021/11/20211129-1301x2048.png",
'altText' : "국제캠퍼스 식단입니다."
}
}],
'quickReplies': [{
'label': goMain,
'action': 'message',
'messageText': goMain
}]
}
}
}
res.json(data);
});
......