Initial commit
This commit is contained in:
21
GerstITS.Examples.Api/Program.cs
Normal file
21
GerstITS.Examples.Api/Program.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using GerstITS.Web.Api.Hosting;
|
||||
|
||||
namespace GerstITS.Examples.Api
|
||||
{
|
||||
public class Program : ProgramBase<Program>
|
||||
{
|
||||
#region Methods
|
||||
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Run(args);
|
||||
}
|
||||
|
||||
protected override void ConfigureWebHost(IWebHostBuilder webHostBuilder)
|
||||
{
|
||||
webHostBuilder.UseStartup<Startup>();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user