(sock, message, args, context)
| 97 | groupOnly: true, |
| 98 | adminOnly: true, |
| 99 | async handler(sock, message, args, context) { |
| 100 | const chatId = context.chatId || message.key.remoteJid; |
| 101 | const matchText = args.join(' '); |
| 102 | await handleGoodbye(sock, chatId, message, matchText); |
| 103 | }, |
| 104 | handleLeaveEvent |
| 105 | }; |
nothing calls this directly
no test coverage detected