()
| 97 | } |
| 98 | |
| 99 | async stop(): Promise<void> { |
| 100 | if (this.app) { |
| 101 | await this.app.stop(); |
| 102 | this.app = null; |
| 103 | } |
| 104 | console.log("[SlackAdapter] Stopped"); |
| 105 | } |
| 106 | |
| 107 | // ------------------------------------------------------------------------- |
| 108 | // MessageSender – proactive message sending |