Merge Player and Queue services

This commit is contained in:
Max Isom 2020-03-20 20:47:04 -05:00
parent 646f030781
commit 9c91ce1a13
21 changed files with 236 additions and 255 deletions

View file

@ -17,7 +17,6 @@ import {
// Managers
import PlayerManager from './managers/player';
import QueueManager from './managers/queue';
// Helpers
import GetSongs from './services/get-songs';
@ -47,7 +46,6 @@ container.bind<Client>(TYPES.Client).toConstantValue(new Client());
// Managers
container.bind<PlayerManager>(TYPES.Managers.Player).to(PlayerManager).inSingletonScope();
container.bind<QueueManager>(TYPES.Managers.Queue).to(QueueManager).inSingletonScope();
// Helpers
container.bind<GetSongs>(TYPES.Services.GetSongs).to(GetSongs).inSingletonScope();