1
0
mirror of https://github.com/bitwarden/mobile synced 2026-02-11 22:03:17 +00:00
Files
mobile/src/iOS/Main.cs
Kyle Spearrin bc3d9c4465 initial commit
2016-05-02 02:52:09 -04:00

21 lines
477 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace Bit.iOS
{
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");
}
}
}