Started implementing backend

This commit is contained in:
TypoMustakes
2025-09-22 13:08:08 +02:00
parent 5bd03270d4
commit ebfd763e68
14 changed files with 173 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.Extensions.DependencyInjection;
using Logic;
namespace Keychain;
@@ -25,6 +26,7 @@ class Program
{
var services = new ServiceCollection();
//services.AddTransient<IPasswordStoreService, PasswordStoreService>();
services.AddSingleton<IPasswordStoreService, PasswordStoreService>();
return services.BuildServiceProvider();
}
}