Changed the layout of the econ system (removed two files that weren't needed) and added the anime/manga section

This commit is contained in:
ION606
2022-05-13 12:14:24 +03:00
parent da568e5ae7
commit 8019c57ead
10 changed files with 510 additions and 212 deletions
+12
View File
@@ -0,0 +1,12 @@
const { top } = require('./all_time_top_anime');
module.exports = {
name: 'anime',
description: 'a-anime....',
execute(command, message, args, bot) {
switch(command) {
case 'topanime': top.execute(message, args);
break;
}
}
}