()
| 15 | disabledCommands: Set<any>; |
| 16 | prefixlessCommands: Map<any,any>; |
| 17 | constructor() { |
| 18 | this.commands = new Map(); |
| 19 | this.aliases = new Map(); |
| 20 | this.categories = new Map(); |
| 21 | this.stats = new Map(); |
| 22 | this.cooldowns = new Map(); |
| 23 | this.disabledCommands = new Set(); |
| 24 | this.prefixlessCommands = new Map(); |
| 25 | this.watchPlugins(); |
| 26 | } |
| 27 | |
| 28 | async watchPlugins() { |
| 29 | const pluginsPath = path.join(process.cwd(), 'dist/plugins'); |
nothing calls this directly
no test coverage detected