BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/IBotSharpAppPlugin.cs
2024-01-15 13:15:18 -06:00

10 lines
198 B
C#

using Microsoft.AspNetCore.Builder;
namespace BotSharp.Abstraction.Plugins
{
public interface IBotSharpAppPlugin: IBotSharpPlugin
{
void Configure(IApplicationBuilder app);
}
}