Last active
April 27, 2023 05:03
-
-
Save INR-L/6b1a6818274d18683bf464bcc5814da3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {inrl} = require('../lib'); | |
inrl( | |
{ | |
pattern: 'cmd', | |
desc: 'To viwe list of categories', | |
sucReact: "💯", | |
category: ["system", "all"], | |
type :'info' | |
}, | |
async (m, conn, match, cmd) => { | |
await m.send(m.client.command) | |
m.client.command = "inrl"; | |
return await conn.sendMessage(m.from,{ text:"cmd : "+m.client.command+'\n\ntext : '+match}, { quoted: m } ); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment