Files
Relay/RelayClient/Platforms/iOS/AppDelegate.cs
Cody Larkin d3d52c3553 remade into 1 project
remade into 1 project
2026-03-14 18:41:39 -04:00

9 lines
207 B
C#

using Foundation;
namespace RelayClient;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}