server-master/srcs/WingsAPI.Plugins/IDependencyInjectorPlugin.cs
2026-02-10 18:21:30 +01:00

20 lines
No EOL
520 B
C#

// WingsEmu
//
// Developed by NosWings Team
using Microsoft.Extensions.DependencyInjection;
namespace WingsAPI.Plugins
{
/// <summary>
/// Plugins that injects dependencies
/// </summary>
public interface IDependencyInjectorPlugin : IPlugin
{
/// <summary>
/// Loads the plugin with the given container builder to register dependencies
/// </summary>
/// <param name="services"></param>
void AddDependencies(IServiceCollection services);
}
}