mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
276 B
C#
9 lines
276 B
C#
using MorseCode.ITask;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public abstract class SearchServiceBase : ISearchService
|
|
{
|
|
public abstract ITask<ISearchResult?> SearchAsync(string? query);
|
|
public abstract ITask<IImageSearchResult?> SearchImagesAsync(string query);
|
|
} |