mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
10 lines
341 B
C#
10 lines
341 B
C#
using NadekoBot.Modules.Searches.Youtube;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public interface ISearchServiceFactory
|
|
{
|
|
public ISearchService GetSearchService(string? hint = null);
|
|
public ISearchService GetImageSearchService(string? hint = null);
|
|
public IYoutubeSearchService GetYoutubeSearchService(string? hint = null);
|
|
} |