structures -> util

This commit is contained in:
Daniel Odendahl Jr
2017-10-13 21:46:29 +00:00
parent adedb65c76
commit ffa05f01ff
43 changed files with 42 additions and 42 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class AnimeCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class BulbapediaCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { list } = require('../../structures/Util');
const { list } = require('../../util/Util');
const countries = ['us', 'jp'];
module.exports = class ITunesCommand extends Command {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class MangaCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
const { TMDB_KEY } = process.env;
module.exports = class MovieCommand extends Command {
+1 -1
View File
@@ -1,6 +1,6 @@
const { Command } = require('discord.js-commando');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class NASACommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class NPMCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { stripIndents } = require('common-tags');
const { filterPkmn, pad } = require('../../structures/Util');
const { filterPkmn, pad } = require('../../util/Util');
module.exports = class PokedexCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class RottenTomatoesCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class StudioGhibliCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
const { TMDB_KEY } = process.env;
module.exports = class TVShowCommand extends Command {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class UrbanCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten, duration } = require('../../structures/Util');
const { shorten, duration } = require('../../util/Util');
module.exports = class VocaloidCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
const { WATTPAD_KEY } = process.env;
module.exports = class WattpadCommand extends Command {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class WikiaCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
const { shorten } = require('../../structures/Util');
const { shorten } = require('../../util/Util');
module.exports = class WikipediaCommand extends Command {
constructor(client) {