2024-01-06 22:24:22 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.HttpHandler;
|
|
|
|
|
|
|
|
|
|
public class HttpHandlerPlugin : IBotSharpPlugin
|
|
|
|
|
{
|
2024-01-12 22:20:22 +00:00
|
|
|
public string Id => "2c1eb1c4-16e5-4c65-8ee4-032324c26b81";
|
2024-01-06 22:24:22 +00:00
|
|
|
public string Name => "HTTP Handler";
|
|
|
|
|
public string Description => "Empower agent to handle HTTP request in RESTful API or GraphQL";
|
|
|
|
|
public string IconUrl => "https://lirp.cdn-website.com/6f8d6d8a/dms3rep/multi/opt/API_Icon-640w.png";
|
|
|
|
|
public bool WithAgent => true;
|
|
|
|
|
|
|
|
|
|
public void RegisterDI(IServiceCollection services, IConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|