Files
selmerBot/commands/anime_and_manga/anime_main.js
T

12 lines
282 B
JavaScript
Raw Normal View History

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;
}
}
}