mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-23 06:38:50 +00:00
Refactor queue file changes (#1755)
* Untested refactor * Untested refactor * It works with some test messages * Use custom deserializer * Clean up warnings
This commit is contained in:
@ -36,6 +36,8 @@ public class Program
|
||||
.ConfigureServices((context, services) =>
|
||||
services.AddSingleton(_ => new LogTracerFactory(GetLoggers()))
|
||||
.AddSingleton<IStorageProvider>(_ => new StorageProvider(EnvironmentVariables.OneFuzz.FuncStorage ?? throw new InvalidOperationException("Missing account id") ))
|
||||
.AddSingleton<ICreds>(_ => new Creds())
|
||||
.AddSingleton<IStorage, Storage>()
|
||||
)
|
||||
.Build();
|
||||
|
||||
|
Reference in New Issue
Block a user