Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created February 10, 2020 11:27
Show Gist options
  • Save AbhinavPradeep/8847ea57987060f8c9b11e21349fed50 to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/8847ea57987060f8c9b11e21349fed50 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Theta.Customers.API
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment