コード例 #1
0
 public async Task<Root> Get(WeatherInput weatherInput)
 {
     var result = new Root();
     //string apiKey = config.GetValue<string>("GlobalKeyValue:ApiKey");
     //if (weatherInput.APIKey == apiKey)
     //{
     result = await _weather.GetWeatherdata(weatherInput);
     //}
     return result;
 }