Create GitDatabaseClient and ObservableGitDatabaseClient

This commit is contained in:
John Nye
2013-11-01 22:10:48 +00:00
parent 06af4afa2b
commit ede12b9e27
14 changed files with 83 additions and 4 deletions

View File

@@ -88,7 +88,7 @@ namespace Octokit
Release = new ReleasesClient(apiConnection);
User = new UsersClient(apiConnection);
SshKey = new SshKeysClient(apiConnection);
Tag = new TagsClient(apiConnection);
GitDatabase = new GitDatabaseClient(apiConnection);
}
/// <summary>
@@ -134,7 +134,7 @@ namespace Octokit
public ISshKeysClient SshKey { get; private set; }
public IUsersClient User { get; private set; }
public INotificationsClient Notification { get; private set; }
public ITagsClient Tag { get; private set; }
public IGitDatabaseClient GitDatabase { get; private set; }
static Uri FixUpBaseUri(Uri uri)
{