()
| 150 | } |
| 151 | |
| 152 | // 生成规则的唯一key |
| 153 | private getRuleKey(rule: CommandRule): string { |
| 154 | return `${rule.command}:${rule.parameters?.join(',') || ''}:${rule.exactMatch ? 'exact' : 'normal'}`; |
| 155 | } |
| 156 | |
| 157 | public async initialize() { |
no outgoing calls
no test coverage detected