parent
cb0d1d8622
commit
df49abf989
@ -0,0 +1,5 @@ |
||||
const fs = require('fs'); |
||||
|
||||
module.exports = async client => { |
||||
|
||||
}; |
@ -0,0 +1 @@ |
||||
module.exports = async client => {}; |
@ -1 +1,8 @@ |
||||
module.exports = () => {}; |
||||
const {Collection} = require("discord.js"); |
||||
|
||||
module.exports = async client => { |
||||
['commands', 'events'].forEach(x => { |
||||
client[x] = new Collection(); |
||||
require(`../collect/${x}`)(client); |
||||
}); |
||||
}; |
Loading…
Reference in new issue