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

13 lines
265 B
C#
Raw Normal View History

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