+ An unhandled error has occurred.
+
Reload
+
🗙
+
+
+
+
diff --git a/src/AdaptiveRemote.Electron/Program.cs b/src/AdaptiveRemote.Electron/Program.cs
new file mode 100644
index 0000000..82a95df
--- /dev/null
+++ b/src/AdaptiveRemote.Electron/Program.cs
@@ -0,0 +1,85 @@
+using AdaptiveRemote.Configuration;
+using AdaptiveRemote.Models;
+using AdaptiveRemote.Services;
+using AdaptiveRemote.Services.Conversation;
+using AdaptiveRemote.Services.Lifecycle;
+using ElectronNET.API;
+using ElectronNET.API.Entities;
+using Microsoft.Extensions.DependencyInjection;
+
+// Create accelerated services using the Core pattern
+var acceleratedServices = new AcceleratedServices(args);
+
+// Configure Electron-specific services
+acceleratedServices.ConfigureHostServices(services =>
+{
+ // Add Blazor Server services for Electron
+ services.AddRazorPages();
+ services.AddServerSideBlazor();
+
+ // Add Electron-specific scope factory
+ services.AddSingleton