Esempio n. 1
0
 public async Task OptionsResponseAsync()
 {
     await ModuleManager.TryExecute(Context.Channel, OptionsService.ReadOptionsAsync(Context));
 }
 public async Task SetInboundChannelResponseAsync(SocketTextChannel channel)
 {
     await ModuleManager.TryExecute(Context.Channel, SetInboundChannelAsync(Context.GetGuildUser(), Context.Server, Context.Guild, channel));
 }
 public async Task TextToSpeech([Remainder] string message)
 {
     await ModuleManager.TryExecute(Context.Channel, ReplyAsync(message, true));
 }
 public async Task SetInboundChannelResponseAsync()
 {
     await ModuleManager.TryExecute(Context.Channel, GetInboundChannelAsync(Context.Guild, Context.Server));
 }
Esempio n. 5
0
 public async Task StoreCollectionResponseAsync()
 => await ModuleManager.TryExecute(Context.Channel, PlazaService.CheckStoresAsync(Context));