blob: 47108b936ff2d185c356b0fa8504087b52a92927 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export const TYPES = {
Bot: Symbol('Bot'),
KeyValueCache: Symbol('KeyValueCache'),
FileCache: Symbol('FileCache'),
Client: Symbol('Client'),
Config: Symbol('Config'),
Command: Symbol('Command'),
ThirdParty: Symbol('ThirdParty'),
Managers: {
Player: Symbol('PlayerManager'),
UpdatingQueueEmbed: Symbol('UpdatingQueueEmbed'),
},
Services: {
AddQueryToQueue: Symbol('AddQueryToQueue'),
GetSongs: Symbol('GetSongs'),
},
};
|