Add help command

This commit is contained in:
Max Isom 2020-03-16 22:12:02 -05:00
parent ac21b5657b
commit 426d0b0335
14 changed files with 109 additions and 13 deletions

View file

@ -9,7 +9,10 @@ import Command from '.';
@injectable()
export default class implements Command {
public name = 'fseek';
public description = 'forward seek position in currently playing song';
public examples = [
['fseek 10', 'skips forward in current song by 10 seconds']
];
private readonly playerManager: PlayerManager;
private readonly queueManager: QueueManager;