nodbot/commands/reload-gifs.js

9 lines
240 B
JavaScript
Raw Normal View History

2021-06-28 03:20:21 +00:00
/* eslint-disable quotes */
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);
}
}