コード例 #1
0
 public async Task ShowRepository()
 {
     var channel = _entityConvertor.ConvertChannel(Context.Channel as SocketGuildChannel);
     await _remoteRepoService.ShowRepositoryAsync(channel);
 }
コード例 #2
0
 public async Task ShowRepository(CommandContext ctx)
 {
     var channel = _entityConvertor.ConvertChannel(ctx.Channel);
     await _remoteRepoService.ShowRepositoryAsync(channel);
 }