aboutsummaryrefslogtreecommitdiff
path: root/src/inversify.config.ts
diff options
context:
space:
mode:
authorHellyson Rodrigo Parteka <[email protected]>2022-03-09 23:45:59 -0300
committerGitHub <[email protected]>2022-03-09 20:45:59 -0600
commitd438d46c09c236b34d5cecf75662ae94e7eca9cf (patch)
treeb48252009ada5d0c94d05aef34c0a171c842e7e0 /src/inversify.config.ts
parent4eefb7b30db1df97f39af1261cedb24d3152dcce (diff)
downloadmuse-d438d46c09c236b34d5cecf75662ae94e7eca9cf.tar.xz
muse-d438d46c09c236b34d5cecf75662ae94e7eca9cf.zip
Create `/resume` command; make `query` required for the `/play` command (#546)
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 7116984..daf4e68 100644
--- a/src/inversify.config.ts
+++ b/src/inversify.config.ts
@@ -23,6 +23,7 @@ import Pause from './commands/pause.js';
import Play from './commands/play.js';
import QueueCommand from './commands/queue.js';
import Remove from './commands/remove.js';
+import Resume from './commands/resume.js';
import Seek from './commands/seek.js';
import Shuffle from './commands/shuffle.js';
import Skip from './commands/skip.js';
@@ -64,6 +65,7 @@ container.bind<AddQueryToQueue>(TYPES.Services.AddQueryToQueue).to(AddQueryToQue
Play,
QueueCommand,
Remove,
+ Resume,
Seek,
Shuffle,
Skip,