10 lines
215 B
C#
10 lines
215 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using zero.Core.Options;
|
|
|
|
namespace zero.Core.Plugins
|
|
{
|
|
public interface IZeroPlugin
|
|
{
|
|
void Configure(IServiceCollection services, IZeroOptions zero);
|
|
}
|
|
} |