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