using API_SequentMicrosystems.Services; using System.Text.Json; using System.Text.Json.Serialization; namespace API_SequentMicrosystems { public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllers().AddNewtonsoftJson(); builder.Services.AddSingleton(); builder.Services.AddSingleton(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); // Configure the HTTP request pipeline. if (true)//app.Environment.IsDevelopment()) { app.UseSwagger(); app.UseSwaggerUI(); } app.UseAuthorization(); app.Services.GetService(); app.Services.GetService(); app.MapControllers(); app.Run(); } } }