Files
ntfysh-windows/ntfysh_client/Program.cs
Lucas Bortoli 347f466242 Initial commit
2022-06-25 18:30:01 -03:00

23 lines
514 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ntfysh_client
{
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());
}
}
}