mirror of
https://github.com/kou029w/daraz-san.git
synced 2025-01-18 16:08:06 +00:00
18 lines
581 B
JavaScript
18 lines
581 B
JavaScript
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) return say(`${nyanco()} < ${ans}`);
|
||
},
|
||
];
|