mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
11 lines
256 B
C#
11 lines
256 B
C#
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
||
|
namespace DotBased.AspNet.Auth;
|
||
|
|
||
|
public static class BasedAuthExtensions
|
||
|
{
|
||
|
public static IServiceCollection AddBasedAuthentication(this IServiceCollection services)
|
||
|
{
|
||
|
return services;
|
||
|
}
|
||
|
}
|