Files
PostManCloneApp/PostmanCloneUI/Program.cs
Tommy Öman b584174707 Initial project tweaks
Sets the UI and Library up to be in a good spot to start work
2024-04-26 10:45:39 +02:00

16 lines
441 B
C#

namespace PostmanCloneUI;
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Dashboard());
}
}