using BotSharp.Plugin.ChatHub.Hooks;
using Microsoft.Extensions.Configuration;
namespace BotSharp.Plugin.ChatHub;
///
/// The dialogue channel connects users, AI assistants and customer service representatives.
///
public class ChatHubPlugin : IBotSharpPlugin
{
public string Name => "Chat Hub";
public void RegisterDI(IServiceCollection services, IConfiguration config)
{
// Register hooks
services.AddScoped();
}
}