remove this?

This commit is contained in:
appelemac 2016-08-22 12:07:40 +02:00
parent aa69703768
commit f5cb629a63

View File

@ -1,12 +0,0 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace NadekoBot.Services
{
public interface IYoutubeService
{
Task<IEnumerable<string>> FindVideosByKeywordsAsync(string keywords, int count = 1);
Task<IEnumerable<string>> FindPlaylistIdsByKeywordsAsync(string keywords, int count = 1);
Task<IEnumerable<string>> FindRelatedVideosAsync(string url, int count = 1);
}
}