Add missing AddSingleton

This commit is contained in:
2021-06-07 15:04:23 +02:00
parent 878d26653c
commit 76c9bd06af

View File

@@ -48,6 +48,7 @@ namespace Akari.Prototype.Server
services.AddSingleton<IAuthManager, AuthManager>();
services.AddSingleton<IKeyManager, KeyManager>();
services.AddSingleton<IApplicationsManager, ApplicationsManager>();
services.AddSingleton<IMasterKeyService, MasterKeyService>();
services.AddSingleton<AkariPath>();
}