aboutsummaryrefslogtreecommitdiff
path: root/src/inversify.config.ts
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2020-03-16 22:12:02 -0500
committerMax Isom <[email protected]>2020-03-16 22:12:02 -0500
commit426d0b03353906ecbd3d27ad25b9268e82ea2ab9 (patch)
tree636cb67a906bed2dc6b63c6b44f32e2a71fc0dc3 /src/inversify.config.ts
parentac21b5657ba47ef9081c80424d5f8ae39b149f35 (diff)
downloadmuse-426d0b03353906ecbd3d27ad25b9268e82ea2ab9.tar.xz
muse-426d0b03353906ecbd3d27ad25b9268e82ea2ab9.zip
Add help command
Diffstat (limited to 'src/inversify.config.ts')
-rw-r--r--src/inversify.config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inversify.config.ts b/src/inversify.config.ts
index 5c17572..c25d32b 100644
--- a/src/inversify.config.ts
+++ b/src/inversify.config.ts
@@ -24,6 +24,7 @@ import Command from './commands';
import Clear from './commands/clear';
import Config from './commands/config';
import ForwardSeek from './commands/fseek';
+import Help from './commands/help';
import Pause from './commands/pause';
import Play from './commands/play';
import QueueCommad from './commands/queue';
@@ -47,6 +48,7 @@ container.bind<QueueManager>(TYPES.Managers.Queue).to(QueueManager).inSingletonS
container.bind<Command>(TYPES.Command).to(Clear).inSingletonScope();
container.bind<Command>(TYPES.Command).to(Config).inSingletonScope();
container.bind<Command>(TYPES.Command).to(ForwardSeek).inSingletonScope();
+container.bind<Command>(TYPES.Command).to(Help).inSingletonScope();
container.bind<Command>(TYPES.Command).to(Pause).inSingletonScope();
container.bind<Command>(TYPES.Command).to(Play).inSingletonScope();
container.bind<Command>(TYPES.Command).to(QueueCommad).inSingletonScope();