22 lines
425 B
C#
22 lines
425 B
C#
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
|
|
}
|
|
}
|