Ejemplo n.º 1
0
        public string Traffer(string serviceName)
        {
            var service = _consulServiceWrapper.GetService(serviceName);

            if (string.IsNullOrWhiteSpace(service))
            {
                return("当前服务不存在");
            }

            return(_consulServiceWrapper.Get($"http://{service}/WeatherForecast"));
        }
Ejemplo n.º 2
0
        public string Traffer(string serviceName)
        {
            var service = _consulServiceWrapper.GetService(serviceName);

            return(_consulServiceWrapper.Get($"http://{service}/WeatherForecast"));
        }