using Microsoft.Extensions.DependencyInjection; using zero.Core.Options; using zero.Core.Plugins; using zero.Web.Sections; using zero.Web.Settings; namespace zero.Web { public class DefaultBackofficePlugin : IZeroPlugin { public void Configure(IServiceCollection services, IZeroPluginBuilder zero) { zero.Configure(opts => { opts.Add(); opts.Add(); opts.Add(); opts.Add(); opts.Add(); }); zero.Configure(opts => { opts.AddGroup(); opts.AddGroup(); }); } } }