14 lines
377 B
C#
14 lines
377 B
C#
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using NDB.Infrastructure.PublicIP.Services;
|
|||
|
|
|||
|
namespace NDB.Infrastructure.PublicIP
|
|||
|
{
|
|||
|
public static class DependencyInjectionExtensions
|
|||
|
{
|
|||
|
public static void AddPublicIPService(this IServiceCollection services)
|
|||
|
{
|
|||
|
services.AddHttpClient<IPublicIPService, PublicIPService>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|