1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00
bitwarden-mobile/src/iOS.Extension/Main.cs

12 lines
208 B
C#
Raw Normal View History

2019-06-27 02:28:23 +02:00
using UIKit;
namespace Bit.iOS.Extension
{
public class Application
{
static void Main(string[] args)
{
UIApplication.Main(args, null, "AppDelegate");
}
}
}