()
| 68 | console.log(`[TelegramAdapter] Started as @${me.username}`); |
| 69 | } |
| 70 | |
| 71 | async stop(): Promise<void> { |
| 72 | if (this.bot) { |
| 73 | await this.bot.stopPolling(); |
| 74 | this.bot = null; |
| 75 | } |
| 76 | console.log("[TelegramAdapter] Stopped"); |
| 77 | } |
| 78 | |
| 79 | // ------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected