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