9 lines
196 B
C#
9 lines
196 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Prise.Plugin
|
|
{
|
|
public interface IPluginBootstrapper
|
|
{
|
|
IServiceCollection Bootstrap(IServiceCollection services);
|
|
}
|
|
} |