using System;
using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive
{
public interface IObservableCommitsClient
{
///
/// Gets a commit for a given repository by sha reference
///
///
/// http://developer.github.com/v3/git/commits/#get-a-commit
///
/// The owner of the repository
/// The name of the repository
/// Tha sha reference of the commit
///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable Get(string owner, string name, string reference);
}
}