Files
2022-12-22 15:29:53 +01:00

30 lines
495 B
C#

using GerstITS.IoC.DotNetCore;
namespace GerstITS.Examples.WebClient.Console;
internal class Program
{
#region Fields
private static readonly DotNetCoreApplicationBootstrapper _bootstrapper;
#endregion
#region Constructors
static Program()
{
_bootstrapper = new DotNetCoreApplicationBootstrapper();
}
#endregion
#region Methods
private static void Main(string[] args)
{
_bootstrapper.Run();
}
#endregion
}