commited scoobydoo

This commit is contained in:
2026-07-04 23:36:31 +02:00
parent 077ee48927
commit 6a061c6835
190 changed files with 1624 additions and 237 deletions
+3
View File
@@ -1,5 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Nexus.Application.Interfaces;
using Nexus.Infrastructure.Persistence;
using Nexus.Infrastructure.Services;
var builder = WebApplication.CreateBuilder(args);
@@ -8,6 +10,7 @@ builder.Services.AddDbContext<NexusDbContext>(options =>
builder.Configuration.GetConnectionString("DefaultConnection")
)
);
builder.Services.AddScoped<IProjectService, ProjectService>();
builder.Services.AddControllers();
var app = builder.Build();