12 lines
229 B
C#
Raw Normal View History

2023-04-04 18:24:13 -05:00
using Microsoft.Extensions.DependencyInjection;
namespace SharedLibraryCore.Interfaces;
public interface IPluginV2 : IModularAssembly
{
static void RegisterDependencies(IServiceCollection serviceProvider)
{
}
}