Files
octokit.net/Octokit/IGitHubClient.cs
T
2013-10-03 09:09:29 -07:00

18 lines
452 B
C#

using Octokit.Http;
namespace Octokit
{
public interface IGitHubClient
{
IConnection Connection { get; }
IAuthorizationsClient Authorization { get; }
IAutoCompleteClient AutoComplete { get; }
IOrganizationsClient Organization { get; }
IRepositoriesClient Repository { get; }
IReleasesClient Releases { get; }
ISshKeysClient SshKey { get; }
IUsersClient User { get; }
}
}