aboutsummaryrefslogtreecommitdiff
path: root/src/commands/queue.ts
diff options
context:
space:
mode:
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) {