mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
7 lines
255 B
C#
7 lines
255 B
C#
namespace NadekoBot.Modules.Searches.Youtube;
|
|
|
|
public sealed class YtdlYoutubeSearchService : YoutubedlxServiceBase, INService
|
|
{
|
|
public override async Task<VideoInfo?> SearchAsync(string query)
|
|
=> await InternalGetInfoAsync(query, false);
|
|
} |