Files
juipnet/Infrastructure/ServiceClient/ScheduledTaskClient/IServiceCollectionExtension.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

14 lines
415 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace ScheduledTaskClient
{
public static class IServiceCollectionExtension
{
public static void AddMsgCenterClient(this IServiceCollection service, string baseUrl="http://scheduledtask")
{
ScheduledTaskHttpClient._BaseUrl = baseUrl;
service.AddSingleton<ScheduledTaskHttpClient>();
}
}
}