owobot/plugins/commands/logoff.js

10 lines
219 B
JavaScript
Raw Normal View History

2024-07-06 11:02:11 -04:00
module.exports={
execute: (c)=>{
c.bot._client.end();
},
desc: "Does nothing", // Command description
usage: ' <required> [optional]', // Command usage
hidden: true,
consoleIndex: true
}