blob: e6edd14c5ca324ec580ad1322cf1503a6f0264c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'),
},
Services: {
GetSongs: Symbol('GetSongs'),
NaturalLanguage: Symbol('NaturalLanguage'),
},
};
|