aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Weather
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 11:02:53 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 11:02:53 -0400
commit189618a75159d604e425c9318984dc2d8a9cc3f9 (patch)
treea87beed88f3f90679b6178641a8469f4129986d7 /MediaBrowser.Controller/Weather
parent0acc25735419b051c6f57a2c08b2ad6f3a969b83 (diff)
fixes #358 - Weather validation in Server configuration
Diffstat (limited to 'MediaBrowser.Controller/Weather')
-rw-r--r--MediaBrowser.Controller/Weather/IWeatherProvider.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/MediaBrowser.Controller/Weather/IWeatherProvider.cs b/MediaBrowser.Controller/Weather/IWeatherProvider.cs
deleted file mode 100644
index 9060e5b9c..000000000
--- a/MediaBrowser.Controller/Weather/IWeatherProvider.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using MediaBrowser.Model.Weather;
-using System.Threading;
-using System.Threading.Tasks;
-
-namespace MediaBrowser.Controller.Weather
-{
- /// <summary>
- /// Interface IWeatherProvider
- /// </summary>
- public interface IWeatherProvider
- {
- /// <summary>
- /// Gets the weather info async.
- /// </summary>
- /// <param name="location">The location.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task{WeatherInfo}.</returns>
- Task<WeatherInfo> GetWeatherInfoAsync(string location, CancellationToken cancellationToken);
- }
-}