mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-14 21:26:54 +00:00
12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|