using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Tiobon.Core.HttpContextUser; namespace Tiobon.Core.Extensions; /// /// HttpContext 相关服务 /// public static class HttpContextSetup { public static void AddHttpContextSetup(this IServiceCollection services) { if (services == null) throw new ArgumentNullException(nameof(services)); services.AddSingleton(); services.AddScoped(); } }