mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-14 05:35:29 +01:00
eb2885b206
Co-authored-by: Max Isom <hi@maxisom.me>
19 lines
479 B
TypeScript
19 lines
479 B
TypeScript
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: {
|
|
AddQueryToQueue: Symbol('AddQueryToQueue'),
|
|
GetSongs: Symbol('GetSongs'),
|
|
YoutubeAPI: Symbol('YoutubeAPI'),
|
|
SpotifyAPI: Symbol('SpotifyAPI'),
|
|
},
|
|
};
|