Places (Windows only currently)

This commit is contained in:
2022-05-27 22:27:53 +02:00
parent 96158160bd
commit 03c8e3a36b
7 changed files with 111 additions and 35 deletions

View File

@@ -43,7 +43,8 @@ public static class Startup
serviceCollection.TryAddSingleton<IInputInterface>(s => s.GetRequiredService<IDialogService>());
return serviceCollection
.AddSingleton<IStartupHandler, RootDriveInfoService>();
.AddSingleton<IStartupHandler, RootDriveInfoService>()
.AddSingleton<IStartupHandler, PlacesService>();
}
internal static IServiceCollection RegisterLogging(this IServiceCollection serviceCollection)