using FastGithub.DomainResolve;
namespace FastGithub.HttpServer.TcpMiddlewares
{
    /// 
    /// github的git代理处理者
    /// 
    sealed class GithubGitReverseProxyHandler : TcpReverseProxyHandler
    {
        /// 
        /// github的git代理处理者
        /// 
        /// 
        public GithubGitReverseProxyHandler(IDomainResolver domainResolver)
            : base(domainResolver, new("github.com", 9418))
        {
        }
    }
}