using PSCHelpdesk.Plugins.HetznerServer.ViewModels; namespace PSCHelpdesk.Plugins.HetznerServer; using Microsoft.Extensions.DependencyInjection; using Prise.Plugin; [PluginBootstrapper(PluginType = typeof(HetznerServer))] public class HetznerServerBootstrap : IPluginBootstrapper { public IServiceCollection Bootstrap(IServiceCollection services) { services.AddTransient(); return services; } }