Files
nadekobot/NadekoBot.Core/Modules/Games/Common/ChatterBot/IChatterBotSession.cs
2021-09-06 21:29:22 +02:00

10 lines
184 B
C#

using System.Threading.Tasks;
namespace NadekoBot.Modules.Games.Common.ChatterBot
{
public interface IChatterBotSession
{
Task<string> Think(string input);
}
}