(text: string)
| 7 | import { safeGetMe } from "@utils/authGuards"; |
| 8 | import { htmlEscape } from "@utils/htmlEscape"; |
| 9 | |
| 10 | // HTML转义工具 |
| 11 | const codeTag = (text: string | number): string => `<code>${htmlEscape(String(text))}</code>`; |
| 12 | |
| 13 | // 获取命令前缀 |
| 14 | const prefixes = getPrefixes(); |
| 15 | const mainPrefix = prefixes[0]; |
| 16 |
no outgoing calls
no test coverage detected