forked from EllieBotDevs/elliebot
Yt searches now INTERNALLY return multiple results but there is no way right now to paginate plain text results moved some stuff around
6 lines
No EOL
141 B
C#
6 lines
No EOL
141 B
C#
namespace EllieBot.Modules.Searches.Youtube;
|
|
|
|
public interface IYoutubeSearchService
|
|
{
|
|
Task<VideoInfo[]?> SearchAsync(string query);
|
|
} |