using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Text; namespace Yi.Framework.Module.ImageSharp.HeiCaptcha { public static class HeiCaptchaExtension { /// /// 启用HeiCaptcha /// /// /// public static IServiceCollection AddHeiCaptcha(this IServiceCollection services) { if (services == null) { throw new ArgumentNullException(nameof(services)); } services.AddScoped(); return services; } } }