2021-06-28 03:20:21 +00:00
|
|
|
/* eslint-disable quotes */
|
2021-06-28 00:24:58 +00:00
|
|
|
module.exports = {
|
|
|
|
name: "reload-gifs",
|
|
|
|
description: "Refresh the hardcoded gif library.",
|
|
|
|
execute(message, args) {
|
2021-06-28 03:20:21 +00:00
|
|
|
const functions = require('../functions.js');
|
|
|
|
functions.getGifFiles(message.client);
|
2021-06-28 00:24:58 +00:00
|
|
|
}
|
|
|
|
}
|