DotBased/DotBased.AspNet.Auth/BasedAuthExtensions.cs

11 lines
256 B
C#
Raw Normal View History

using Microsoft.Extensions.DependencyInjection;
namespace DotBased.AspNet.Auth;
public static class BasedAuthExtensions
{
public static IServiceCollection AddBasedAuthentication(this IServiceCollection services)
{
return services;
}
}