FireWalletCosmos/FireWalletLite/Program.cs

16 lines
449 B
C#
Raw Normal View History

2023-07-15 22:17:49 +10:00
namespace FireWalletLite;
internal static class Program
2023-07-05 16:44:34 +10:00
{
2023-07-15 22:17:49 +10:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
2023-07-05 16:44:34 +10:00
{
2023-07-15 22:17:49 +10:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Loader());
2023-07-05 16:44:34 +10:00
}
}