Files
RelayClient/RelayChat/Platforms/iOS/AppDelegate.cs
2026-03-09 18:47:32 -04:00

9 lines
205 B
C#

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