remade into 1 project

This commit is contained in:
2026-03-14 18:40:42 -04:00
parent eb927b3038
commit a1ddf380dd
74 changed files with 1855 additions and 1869 deletions

16
RelayClient/App.xaml.cs Normal file
View File

@@ -0,0 +1,16 @@
using Microsoft.Extensions.DependencyInjection;
namespace RelayClient;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}
}