namespace Octokit
{
///
/// A client for GitHub's Git Database API. Gives you access to read and write raw Git objects and to list and update your references.
///
///
/// See the Git API documentation for more information.
///
public interface IGitDatabaseClient
{
IBlobsClient Blob { get; }
ITagsClient Tag { get; }
ITreesClient Tree { get; }
ICommitsClient Commit { get; }
IReferencesClient Reference { get; }
}
}