From f5cb629a6362c72ffe94c250a9bb5fb6e5da0a27 Mon Sep 17 00:00:00 2001 From: appelemac Date: Mon, 22 Aug 2016 12:07:40 +0200 Subject: [PATCH] remove this? --- src/NadekoBot/Services/IYoutubeService.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/NadekoBot/Services/IYoutubeService.cs diff --git a/src/NadekoBot/Services/IYoutubeService.cs b/src/NadekoBot/Services/IYoutubeService.cs deleted file mode 100644 index bf511f00..00000000 --- a/src/NadekoBot/Services/IYoutubeService.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Collections.Generic; -using System.Threading.Tasks; - -namespace NadekoBot.Services -{ - public interface IYoutubeService - { - Task> FindVideosByKeywordsAsync(string keywords, int count = 1); - Task> FindPlaylistIdsByKeywordsAsync(string keywords, int count = 1); - Task> FindRelatedVideosAsync(string url, int count = 1); - } -}