BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/IBotSharpAppPlugin.cs
2023-06-27 06:16:21 +08:00

13 lines
265 B
C#

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);
}
}