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