mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
184 B
C#
10 lines
184 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Modules.Games.Common.ChatterBot
|
|
{
|
|
public interface IChatterBotSession
|
|
{
|
|
Task<string> Think(string input);
|
|
}
|
|
}
|