BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/IBotSharpAppPlugin.cs

10 lines
198 B
C#
Raw Normal View History

2023-06-26 22:16:21 +00:00
using Microsoft.AspNetCore.Builder;
namespace BotSharp.Abstraction.Plugins
{
public interface IBotSharpAppPlugin: IBotSharpPlugin
{
void Configure(IApplicationBuilder app);
}
}