[REFACTOR] Reworking auth implementation

This commit is contained in:
max
2024-12-16 02:34:30 +01:00
parent eb277e0937
commit e8438c807d
8 changed files with 81 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.Extensions.DependencyInjection;
namespace DotBased.AspNet.Auth;
public static class BasedAuthExtensions
{
public static IServiceCollection AddBasedAuthentication(this IServiceCollection services)
{
return services;
}
}