Files
juipnet/Infrastructure/ServiceClient/ScheduledTaskClient/IServiceCollectionExtension.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

14 lines
402 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>();
}
}
}