forked from EllieBotDevs/elliebot
6 lines
139 B
C#
6 lines
139 B
C#
|
namespace EllieBot.Modules.Searches.Youtube;
|
|||
|
|
|||
|
public interface IYoutubeSearchService
|
|||
|
{
|
|||
|
Task<VideoInfo?> SearchAsync(string query);
|
|||
|
}
|