mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03: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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|