BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/IFunctionCallback.cs

8 lines
146 B
C#
Raw Normal View History

2023-07-30 18:22:07 +00:00
namespace BotSharp.Abstraction.Functions;
public interface IFunctionCallback
{
string Name { get; }
Task<string> Execute(string args);
}