20 lines
No EOL
520 B
C#
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);
|
|
}
|
|
} |