blob: 19c734d90c12228a065e16ee89801a2fc467f0fa (
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: {
GetSongs: Symbol('GetSongs'),
NaturalLanguage: Symbol('NaturalLanguage'),
},
};
|