mirror of
https://github.com/bitwarden/mobile
synced 2025-12-19 17:53:47 +00:00
12 lines
208 B
C#
12 lines
208 B
C#
using UIKit;
|
|
|
|
namespace Bit.iOS.Extension
|
|
{
|
|
public class Application
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
UIApplication.Main(args, null, "AppDelegate");
|
|
}
|
|
}
|
|
} |