Skip to content

Commit

Permalink
fix(example): use more user friendly ephemeral
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Jun 7, 2022
1 parent cddd737 commit cf51239
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions example/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,12 @@ export const commands: Command[] = [
createAddCommand(playerManager),
createClearCommand(playerManager),
createPauseCommand(playerManager),
createPlayCommand(playerManager, {
ephemeral: false,
ephemeralError: true,
}),
createQueueCommand(playerManager),
createPlayCommand(playerManager),
createQueueCommand(playerManager, { ephemeral: true }),
createResumeCommand(playerManager),
createShuffleCommand(playerManager),
createSkipCommand(playerManager),
createSongCommand(playerManager),
createSongCommand(playerManager, { ephemeral: true }),
createStopCommand(playerManager),
createSetVolumeCommand(playerManager),
];
Expand Down

0 comments on commit cf51239

Please sign in to comment.