Fixed a certain command, scraping as the api is closed

This commit is contained in:
Kwoth
2022-07-07 22:08:22 +02:00
parent 470bb9657f
commit 83c9c372e4
8 changed files with 163 additions and 229 deletions

View File

@@ -0,0 +1,9 @@
using NadekoBot.Modules.Searches.Common;
namespace NadekoBot.Modules.Nsfw;
public interface INhentaiService
{
Task<Gallery?> GetAsync(uint id);
Task<IReadOnlyList<uint>> GetIdsBySearchAsync(string search);
}