()
| 173 | ); |
| 174 | } |
| 175 | |
| 176 | async stop(): Promise<void> { |
| 177 | if (this.channel) { |
| 178 | await this.channel.disconnect(); |
| 179 | this.channel = null; |
| 180 | } |
| 181 | console.log("[FeishuAdapter] Stopped"); |
| 182 | } |
| 183 | |
| 184 | async sendMessage(channelId: string, text: string): Promise<void> { |
nothing calls this directly
no test coverage detected