using FastGithub.Dns;
using Microsoft.Extensions.DependencyInjection;
namespace FastGithub
{
///
/// 服务注册扩展
///
public static class DnsServiceCollectionExtensions
{
///
/// 注册github的dns服务
///
///
///
public static IServiceCollection AddGithubDns(this IServiceCollection services)
{
return services
.AddSingleton()
.AddHostedService();
}
}
}