16 lines
348 B
C#
16 lines
348 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace zero.Core.Plugins
|
|
{
|
|
public abstract class ZeroPlugin : IZeroPlugin
|
|
{
|
|
public virtual void Configure(IServiceCollection services, IZeroPluginBuilder zero) { }
|
|
|
|
}
|
|
|
|
|
|
public interface IZeroPlugin
|
|
{
|
|
void Configure(IServiceCollection services, IZeroPluginBuilder zero);
|
|
}
|
|
} |