pschelpdesk/Vendor/Prise.Plugin/IPluginBootstrapper.cs
2024-11-04 20:45:34 +01:00

9 lines
196 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace Prise.Plugin
{
public interface IPluginBootstrapper
{
IServiceCollection Bootstrap(IServiceCollection services);
}
}