DocSpace-client/thirdparty/Google.Authenticator/Google.Authenticator.WinTest/Program.cs

23 lines
529 B
C#
Raw Normal View History

2022-02-24 14:36:44 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Google.Authenticator.WinTest
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}