mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
15 lines
No EOL
395 B
C#
15 lines
No EOL
395 B
C#
using UIKit;
|
|
|
|
namespace Bit.iOS.Test
|
|
{
|
|
public class Application
|
|
{
|
|
// This is the main entry point of the application.
|
|
static void Main(string[] args)
|
|
{
|
|
// if you want to use a different Application Delegate class from "AppDelegate"
|
|
// you can specify it here.
|
|
UIApplication.Main(args, null, "AppDelegate");
|
|
}
|
|
}
|
|
} |