mirror of
https://github.com/danbulant/discord.js
synced 2026-05-30 04:41:11 +00:00
Fix structure paths
This commit is contained in:
parent
c29804e3f8
commit
0291fe41d8
1 changed files with 10 additions and 10 deletions
|
|
@ -39,16 +39,16 @@ class Structures {
|
|||
}
|
||||
|
||||
const structures = {
|
||||
Channel: require('./structures/Channel'),
|
||||
Emoji: require('./structures/Emoji'),
|
||||
GuildChannel: require('./structures/GuildChannel'),
|
||||
GuildMember: require('./structures/GuildMember'),
|
||||
Guild: require('./structures/Guild'),
|
||||
Message: require('./structures/Message'),
|
||||
Presence: require('./structures/Presence'),
|
||||
Reaction: require('./structures/Reaction'),
|
||||
Role: require('./structures/Role'),
|
||||
User: require('./structures/User'),
|
||||
Channel: require('../structures/Channel'),
|
||||
Emoji: require('../structures/Emoji'),
|
||||
GuildChannel: require('../structures/GuildChannel'),
|
||||
GuildMember: require('../structures/GuildMember'),
|
||||
Guild: require('../structures/Guild'),
|
||||
Message: require('../structures/Message'),
|
||||
Presence: require('../structures/Presence'),
|
||||
Reaction: require('../structures/Reaction'),
|
||||
Role: require('../structures/Role'),
|
||||
User: require('../structures/User'),
|
||||
};
|
||||
|
||||
module.exports = Structures;
|
||||
|
|
|
|||
Loading…
Reference in a new issue