Cleanup of unnecessary imports across the codebase. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
407 B
C#
16 lines
407 B
C#
namespace CutList
|
|
{
|
|
internal static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
private static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new Forms.MainForm());
|
|
}
|
|
}
|
|
} |