mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
12 lines
334 B
C#
12 lines
334 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using MaksIT.LetsEncrypt.Services;
|
|
|
|
namespace MaksIT.LetsEncrypt.Extensions;
|
|
public static class ServiceCollectionExtensions {
|
|
public static void RegisterLetsEncrypt(this IServiceCollection services) {
|
|
|
|
services.AddHttpClient<ILetsEncryptService, LetsEncryptService>();
|
|
}
|
|
}
|