2020-03-13 04:41:26 +01:00
|
|
|
export const TYPES = {
|
|
|
|
Bot: Symbol('Bot'),
|
2021-11-19 02:55:57 +01:00
|
|
|
KeyValueCache: Symbol('KeyValueCache'),
|
|
|
|
FileCache: Symbol('FileCache'),
|
2020-03-13 04:41:26 +01:00
|
|
|
Client: Symbol('Client'),
|
2021-09-20 01:50:25 +02:00
|
|
|
Config: Symbol('Config'),
|
2020-03-13 04:41:26 +01:00
|
|
|
Command: Symbol('Command'),
|
2021-09-20 01:50:25 +02:00
|
|
|
ThirdParty: Symbol('ThirdParty'),
|
2020-03-15 20:36:59 +01:00
|
|
|
Managers: {
|
2021-09-20 04:24:46 +02:00
|
|
|
Player: Symbol('PlayerManager'),
|
2022-02-05 23:16:17 +01:00
|
|
|
UpdatingQueueEmbed: Symbol('UpdatingQueueEmbed'),
|
2020-03-18 03:36:48 +01:00
|
|
|
},
|
|
|
|
Services: {
|
2022-02-05 23:16:17 +01:00
|
|
|
AddQueryToQueue: Symbol('AddQueryToQueue'),
|
2020-03-18 23:15:45 +01:00
|
|
|
GetSongs: Symbol('GetSongs'),
|
2021-09-20 04:24:46 +02:00
|
|
|
},
|
2020-03-13 04:41:26 +01:00
|
|
|
};
|