using Microsoft.OpenApi.Models; using MySqlConnector; using sawis_bi_tool.Services.Services.ChartDataServices; var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddTransient(_ => new MySqlConnection(builder.Configuration.GetConnectionString("SAWIS"))); builder.Services.AddControllers(); // Registring services builder.Services.AddScoped(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "sawis_bi_tool.API", Version = "v1" }); }); // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { app.UseSwagger(); app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "sawis_bi_tool.API v1")); } app.UseHttpsRedirection(); app.UseAuthorization(); app.MapControllers(); app.Run();