Files
octokit.net/Octokit.Reactive/IObservableGitHubClient.cs
Haacked 8ff4e4c603 Add Connection property to IObservableGitHubClient
Sometimes we need to be able to make raw requests. This
makes that easier.
2013-10-07 15:54:47 -07:00

16 lines
490 B
C#

using Octokit.Http;
namespace Octokit.Reactive
{
public interface IObservableGitHubClient
{
IConnection Connection { get; }
IObservableAuthorizationsClient Authorization { get; }
IObservableMiscellaneousClient Miscellaneous { get; }
IObservableOrganizationsClient Organization { get; }
IObservableRepositoriesClient Repository { get; }
IObservableSshKeysClient SshKey { get; }
IObservableUsersClient User { get; }
}
}