This commit is contained in:
Jöran Malek 2024-02-09 13:02:20 +01:00
parent 527efff89a
commit 4e7dfc56a8
9 changed files with 54 additions and 2 deletions

View file

@ -1,7 +1,11 @@
using InkForge.Common.Controllers;
using InkForge.Common.Data;
using InkForge.Common.ViewModels;
using InkForge.Common.Views;
using InkForge.Data;
using ReactiveUI;
namespace Microsoft.Extensions.DependencyInjection;
public static class InkForgeServiceCollections
@ -14,6 +18,8 @@ public static class InkForgeServiceCollections
services.AddSingleton<WorkspaceController>();
services.AddTransient<IViewFor<LandingViewModel>, LandingView>();
return services;
}
}