Add forward seek

This commit is contained in:
Max Isom 2020-03-15 15:35:34 -05:00
parent bf0843dd1d
commit 3c169d113c
3 changed files with 52 additions and 0 deletions

View file

@ -23,6 +23,7 @@ import QueueManager from './managers/queue';
import Command from './commands';
import Clear from './commands/clear';
import Config from './commands/config';
import ForwardSeek from './commands/fseek';
import Play from './commands/play';
import QueueCommad from './commands/queue';
import Seek from './commands/seek';
@ -41,6 +42,7 @@ container.bind<QueueManager>(TYPES.Managers.Queue).to(QueueManager).inSingletonS
// Commands
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(Play).inSingletonScope();
container.bind<Command>(TYPES.Command).to(QueueCommad).inSingletonScope();
container.bind<Command>(TYPES.Command).to(Seek).inSingletonScope();