1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 15:23:42 +00:00

Undo changes to program.cs

This commit is contained in:
Hinton
2025-10-09 15:04:09 -07:00
parent 5784d74d52
commit 9a9c9918e2

View File

@@ -1,10 +1,7 @@
using Bit.Core.Entities;
using Bit.Infrastructure.EntityFramework.Repositories;
using Bit.Infrastructure.EntityFramework.Repositories;
using Bit.Seeder.Recipes;
using CommandDotNet;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
namespace Bit.DbSeederUtility;
@@ -29,7 +26,6 @@ public class Program
// Create service provider with necessary services
var services = new ServiceCollection();
ServiceCollectionExtension.ConfigureServices(services);
services.TryAddScoped<IPasswordHasher<User>, PasswordHasher<User>>();
var serviceProvider = services.BuildServiceProvider();