Add FingerprintManager

This commit is contained in:
2021-06-03 20:19:42 +02:00
parent 1c6b545e6b
commit adcde19346
14 changed files with 240 additions and 5 deletions

View File

@@ -32,6 +32,10 @@ namespace Akari.Prototype.Server
.Bind(Configuration.GetSection(TcpProviderOptions.SectionPath))
.ValidateDataAnnotations();
services.AddSingleton<IFingerprintManager, FingerprintManager>();
services.AddSingleton<IAuthManager, AuthManager>();
services.AddSingleton<IKeyManager, KeyManager>();
services.AddHostedService<TcpProviderService>();
}