elliebot/src/EllieBot/Modules/Searches/Search/Youtube/IYoutubeSearchService.cs
2024-09-21 14:42:25 +12:00

6 lines
No EOL
139 B
C#

namespace EllieBot.Modules.Searches.Youtube;
public interface IYoutubeSearchService
{
Task<VideoInfo?> SearchAsync(string query);
}