forked from EllieBotDevs/elliebot
7 lines
254 B
C#
7 lines
254 B
C#
|
namespace EllieBot.Modules.Searches.Youtube;
|
|||
|
|
|||
|
public sealed class YtdlYoutubeSearchService : YoutubedlxServiceBase, INService
|
|||
|
{
|
|||
|
public override async Task<VideoInfo?> SearchAsync(string query)
|
|||
|
=> await InternalGetInfoAsync(query, false);
|
|||
|
}
|