aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
blob: 8bcd684dd391af09f0194ad415e68e803402a66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const TYPES = {
  Bot: Symbol('Bot'),
  Cache: Symbol('Cache'),
  Client: Symbol('Client'),
  Config: Symbol('Config'),
  Command: Symbol('Command'),
  ThirdParty: Symbol('ThirdParty'),
  Managers: {
    Player: Symbol('PlayerManager'),
  },
  Services: {
    GetSongs: Symbol('GetSongs'),
    NaturalLanguage: Symbol('NaturalLanguage'),
  },
};