using FastGithub.Configuration;
using Microsoft.Extensions.Logging;
using System.Runtime.Versioning;
namespace FastGithub.PacketIntercept.Tcp
{
    /// 
    /// git拦截器
    ///    
    [SupportedOSPlatform("windows")]
    sealed class GitInterceptor : TcpInterceptor
    {
        /// 
        /// git拦截器
        /// 
        /// 
        public GitInterceptor(ILogger logger)
            : base(9418, GlobalListener.GitPort, logger)
        {
        }
    }
}