Add JWT auth, token service & Neutrino endpoint

This commit is contained in:
Holden
2026-06-19 12:25:45 -05:00
parent 608def3ac8
commit 3eebfc9ba2
27 changed files with 581 additions and 51 deletions

View File

@@ -1,5 +1,4 @@
using Microsoft.Extensions.DependencyInjection;
using RecNet.Application.Services.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace RecNet.Application;
@@ -9,8 +8,9 @@ public static class DependencyInjection
{
services.AddAutoMapper(_ => { }, typeof(DependencyInjection).Assembly);
services.AddScoped<IConfigService, ConfigService>();
// Usually there would be CQRS, but I'm rushing out this server, so I didn't feel like adding it.
// Enjoy a VERY barebones application layer :D
return services;
}
}
}