el-bot
Version:
A quick qq bot framework for mirai.
21 lines (18 loc) • 508 B
text/typescript
// export const name = 'ping'
// export function apply(ctx) {
// // 如果收到“天王盖地虎”,就回应“宝塔镇河妖”
// ctx.middleware(async (session, next) => {
// const replyMap: Record<string, string> = {
// '(': ')',
// '(': ')',
// '[': ']',
// '[': ']',
// '【': '】',
// 'ping': 'pong',
// }
// let reply
// if (session.content)
// reply = replyMap[session.content]
// return reply || next()
// })
// }