From 9fb3e520790e39ecde633336e8b90702c293fa38 Mon Sep 17 00:00:00 2001 From: quentin Date: Mon, 20 May 2024 10:46:31 -0500 Subject: [PATCH] Added authentication services to program --- API/Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/API/Program.cs b/API/Program.cs index ee1db36..690da9b 100644 --- a/API/Program.cs +++ b/API/Program.cs @@ -1,3 +1,5 @@ +using API.Authentication; +using API.Authentication.Interfaces; using API.Services; using DAL.Contexts; using Microsoft.EntityFrameworkCore; @@ -35,6 +37,9 @@ namespace API builder.Services.AddTransient(); builder.Services.AddTransient(); + builder.Services.AddTransient(); + builder.Services.AddTransient(); + WebApplication app = builder.Build(); if (app.Environment.IsDevelopment())