Files
octokit.net/Octokit.Reactive/IObservableGitHubClient.cs
Haacked 997e955f38 Rename to Octokit to be consistent with other API libs
GitHub is naming all of the libraries Octokit for their respective
platforms
2013-01-29 14:00:27 -08:00

12 lines
428 B
C#

namespace Octokit.Reactive
{
public interface IObservableGitHubClient
{
IObservableAuthorizationsClient Authorization { get; }
IObservableAutoCompleteClient AutoComplete { get; }
IObservableOrganizationsClient Organization { get; }
IObservableRepositoriesClient Repositories { get; }
IObservableSshKeysClient SshKey { get; }
IObservableUsersClient User { get; }
}
}