[성현모] TRA Recovery Tool 추가

This commit is contained in:
SHM
2025-04-17 08:00:44 +09:00
parent 3eeb27cb31
commit 0b69c113ec
15 changed files with 1009 additions and 20 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SystemX.Product.CP.RecoveryTool
{
internal static class Program
{
/// <summary>
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}