API_SequentMicrosystems-RPI/Program.cs

40 lines
1001 B
C#

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