10 lines
198 B
C#
10 lines
198 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace BotSharp.Abstraction.Plugins
|
|
{
|
|
public interface IBotSharpAppPlugin: IBotSharpPlugin
|
|
{
|
|
void Configure(IApplicationBuilder app);
|
|
}
|
|
}
|