This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/EllieBot/Modules/Searches/Search/Youtube/IYoutubeSearchService.cs
Toastie c0cd161c90
Added initial version of the grpc api. Added relevant dummy settings to creds (they have no effect rn)
Yt searches now INTERNALLY return multiple results but there is no way right now to paginate plain text results
moved some stuff around
2024-10-03 17:24:13 +13:00

6 lines
No EOL
141 B
C#

namespace EllieBot.Modules.Searches.Youtube;
public interface IYoutubeSearchService
{
Task<VideoInfo[]?> SearchAsync(string query);
}