scoreboard-api/Server/Program.cs
cuqmbr 3d170dca7a feat: add api controller
GET, POST, PUT method is present. DELETE is absent scince we don't need it in this case
2022-07-15 20:47:22 +03:00

27 lines
555 B
C#

using Microsoft.EntityFrameworkCore;
using Server.Data;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddDbContext<ServerDbContext>(o => o.UseSqlite(builder.Configuration.GetConnectionString("DefaultConnection")));
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();