15 lines
387 B
C#
15 lines
387 B
C#
using BotSharp.Abstraction.Agents;
|
|
using BotSharp.Plugin.PizzaBot.Hooks;
|
|
|
|
namespace BotSharp.Plugin.PizzaBot;
|
|
|
|
public class PizzaBotPlugin : IBotSharpPlugin
|
|
{
|
|
public string Name => "Pizza AI Assistant";
|
|
public void RegisterDI(IServiceCollection services, IConfiguration config)
|
|
{
|
|
// Register hooks
|
|
services.AddScoped<IAgentHook, PizzaBotAgentHook>();
|
|
}
|
|
}
|