Exemple #1
0
 public List <Branch> Branches(string owner, string repository)
 {
     return(_giteaApi.GetBranches(owner, repository).Result);
 }
 public async Task <List <Branch> > Branches(string org, string repository)
 => await _giteaApi.GetBranches(org, repository);