using Ds.Module.AppStartup; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; #region << 版 本 注 释 >> /* * 版权所有 (c)2024 保留所有权 * CLR版本 4.0.30319.42000 * * * * * * */ #endregion << 版 本 注 释 >> namespace DS.Module.UserModule { [DsStartup(4)] public class UserModuleAppStartup : IDynamicStartup { public void Configure(WebApplication app) { } public void ConfigureServices(WebApplicationBuilder builder) { builder.Services.AddSingleton(); builder.Services.AddScoped(); // builder.Services.AddUserModuleInstall(); } } }