aboutsummaryrefslogtreecommitdiff
path: root/src/commands/queue.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/commands/queue.ts
parentac21b5657ba47ef9081c80424d5f8ae39b149f35 (diff)
downloadmuse-426d0b03353906ecbd3d27ad25b9268e82ea2ab9.tar.xz
muse-426d0b03353906ecbd3d27ad25b9268e82ea2ab9.zip
Add help command
Diffstat (limited to 'src/commands/queue.ts')
-rw-r--r--src/commands/queue.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/queue.ts b/src/commands/queue.ts
index dfa48d4..e77cbcb 100644
--- a/src/commands/queue.ts
+++ b/src/commands/queue.ts
@@ -7,7 +7,10 @@ import Command from '.';
@injectable()
export default class implements Command {
public name = 'queue';
- public description = 'shows current queue';
+ public examples = [
+ ['queue', 'shows current queue']
+ ];
+
private readonly queueManager: QueueManager;
constructor(@inject(TYPES.Managers.Queue) queueManager: QueueManager) {