12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
|
module.exports={
|
||
|
execute: (c)=>{
|
||
|
c.reply({
|
||
|
text: c.verify+""
|
||
|
})
|
||
|
c.reply({
|
||
|
text: c.command
|
||
|
})
|
||
|
},
|
||
|
level: 1
|
||
|
}
|