Ejemplo n.º 1
0
 public async Task RemoveCommand(int index)
 => await AudioService.Remove(Context, index).ConfigureAwait(false);
Ejemplo n.º 2
0
 public async Task ResumeCommand()
 => await AudioService.Resume(Context).ConfigureAwait(false);
Ejemplo n.º 3
0
 public async Task PauseCommand()
 => await AudioService.Pause(Context).ConfigureAwait(false);
Ejemplo n.º 4
0
 public async Task SkipCommand()
 => await AudioService.Skip(Context).ConfigureAwait(false);
Ejemplo n.º 5
0
 public async Task PlayCommand([Remainder] string song)
 => await AudioService.Play(Context, song).ConfigureAwait(false);
Ejemplo n.º 6
0
 public async Task JoinCommand()
 => await AudioService.JoinAudio(Context).ConfigureAwait(false);