(msg: Api.Message)
| 684 | } |
| 685 | |
| 686 | const so = async (msg: Api.Message) => { |
| 687 | const client = await getGlobalClient(); |
| 688 | if (!client) return; |
| 689 | |
| 690 | const service = new SearchService(client); |
| 691 | await service.initialize(); |
| 692 | await service.handle(msg); |
| 693 | }; |
| 694 | |
| 695 | class ChannelSearchPlugin extends Plugin { |
| 696 | cleanup(): void { |
nothing calls this directly
no test coverage detected