1234567891011121314151617181920212223242526272829303132 |
- using trieTree.xiaoshi.sz.com;
- var builder = WebApplication.CreateBuilder(args);
- // Add services to the container.
- builder.Services.AddControllers();
- // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
- builder.Services.AddEndpointsApiExplorer();
- builder.Services.AddSwaggerGen();
- // 添加服务到依赖注入容器
- builder.Services.AddSingleton<AddressUtility>();
- // 配置HTTP请求管道
- // ...
- var app = builder.Build();
- // Configure the HTTP request pipeline.
- app.UseSwagger();
- app.UseSwaggerUI();
- app.UseHttpsRedirection();
- app.UseAuthorization();
- app.MapControllers();
- app.Run();
|