mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
30 lines
780 B
C#
30 lines
780 B
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.OpenApi.Models;
|
|
using System;
|
|
using System.IO;
|
|
using Yi.Framework.Common.IOCOptions;
|
|
using Yi.Framework.Core;
|
|
using Yi.Framework.Core.SMS;
|
|
|
|
namespace Yi.Framework.WebCore.MiddlewareExtend
|
|
{
|
|
/// <summary>
|
|
/// Redis扩展
|
|
/// </summary>
|
|
public static class SMSExtension
|
|
{
|
|
public static IServiceCollection AddSMSService(this IServiceCollection services)
|
|
{
|
|
if (Appsettings.appBool("SMS_Enabled"))
|
|
{
|
|
|
|
services.Configure<SMSOptions>(Appsettings.appConfiguration("SMS"));
|
|
services.AddTransient<AliyunSMSInvoker>();
|
|
}
|
|
return services;
|
|
|
|
}
|
|
}
|
|
}
|