Skip to content
Snippets Groups Projects
ISimpleApiClient.cs 300 B
Newer Older
using System.Threading.Tasks;
using GitHub.Primitives;
using Octokit;
using System;

namespace GitHub.Api
{
    public interface ISimpleApiClient
    {
        HostAddress HostAddress { get; }
        UriString OriginalUrl { get; }
        Task GetRepository(Action<Repository> callback);
    }
}