mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-05-11 12:21:37 +02:00
Go Packers
This commit is contained in:
parent
e57d86d7cc
commit
6a02088b04
5 changed files with 139 additions and 57 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue