1
0
Fork 0
mirror of https://github.com/kou029w/daraz-san.git synced 2025-01-19 00:18:01 +00:00
daraz-san/scripts/tellme.js

19 lines
574 B
JavaScript
Raw Normal View History

const { directMention } = require("@slack/bolt");
const tellme = require("./util/tellme");
const nyanco = require("./util/nyanco");
// Description:
// だらずさんは何でも知っているので教えてくれます
//
// Synopsis:
// tell me <phrase> - <phrase> について教えてあげよう、妖怪ウィキウィキペディアは使ってないよ!
module.exports = [
directMention(),
/tell( ?me)? (.*)/i,
async ({ context, say }) => {
const ans = await tellme(context.matches[2]);
if (ans != null) say(`${nyanco()} ${ans}`);
2020-04-09 00:16:46 +09:00
},
];