Go Packers

This commit is contained in:
Max Isom 2020-03-18 17:15:45 -05:00
parent e57d86d7cc
commit 6a02088b04
5 changed files with 139 additions and 57 deletions

View file

@ -21,6 +21,7 @@ import QueueManager from './managers/queue';
// Helpers
import GetSongs from './services/get-songs';
import NaturalLanguage from './services/natural-language-commands';
// Comands
import Command from './commands';
@ -49,6 +50,7 @@ container.bind<QueueManager>(TYPES.Managers.Queue).to(QueueManager).inSingletonS
// Helpers
container.bind<GetSongs>(TYPES.Services.GetSongs).to(GetSongs).inSingletonScope();
container.bind<NaturalLanguage>(TYPES.Services.NaturalLanguage).to(NaturalLanguage).inSingletonScope();
// Commands
container.bind<Command>(TYPES.Command).to(Clear).inSingletonScope();