26 lines
No EOL
495 B
C#
Executable file
26 lines
No EOL
495 B
C#
Executable file
using Microsoft.EntityFrameworkCore;
|
|
using Api.Models;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddDbContext<Context>(opt =>
|
|
opt.UseInMemoryDatabase("List"));
|
|
|
|
var app = builder.Build();
|
|
|
|
if (builder.Environment.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
app.UseDefaultFiles();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run(); |