aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
blob: 3b64ea1d68dacf9eac6598acfa264b891d6920e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'),
  },
};