jellyfin-rich-presence/WindowsFormsApplication2/Program.cs
2025-04-21 17:54:03 -06:00

25 lines
597 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
FileChecker.FolderCheck();
FileChecker.FileCheck();
Application.Run(new Form1());
}
}
}