Jackett/src/Jackett.Tray/Program.cs

23 lines
511 B
C#
Raw Normal View History

2015-07-19 00:27:41 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
2015-07-19 13:33:27 +00:00
namespace JackettTray
2015-07-19 00:27:41 +00:00
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2015-07-19 13:33:27 +00:00
Application.Run(new Main());
2015-07-19 00:27:41 +00:00
}
}
}