elliebot/src/EllieBot/Modules/Searches/Search/Youtube/YtdlYoutubeSearchService.cs
2024-09-21 14:57:09 +12:00

7 lines
No EOL
254 B
C#

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