API_SequentMicrosystems-RPI/Program.cs

44 lines
1.2 KiB
C#

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<RTDDAService>();
builder.Services.AddSingleton<PointsService>();
// 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<RTDDAService>();
app.Services.GetService<PointsService>();
app.MapControllers();
app.Run();
}
}
}