UNPKG

el-bot

Version:

A quick qq bot framework for mirai.

12 lines (8 loc) 293 B
import type { Command } from './index' export type CommandList = Map<string, Command> export function getHelpContent(list: CommandList) { let content = '帮助指令:' for (const [key, command] of list) content += `\n ${key}: ${command.desc || '没有说明'}` return content }