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

7 lines
No EOL
254 B
C#

namespace EllieBot.Modules.Searches.Youtube;
public sealed class YtdlpYoutubeSearchService : YoutubedlxServiceBase, INService
{
public override async Task<VideoInfo?> SearchAsync(string query)
=> await InternalGetInfoAsync(query, true);
}