mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
4099bd15c1
https://hackernoon.com/go-vs-net-core-in-terms-of-http-performance-7535a61b67b8 Former-commit-id: dabf2d23a2f8a341ded9fc87ced82300855e26a6
26 lines
613 B
C#
26 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace netcore_mvc_templates
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
BuildWebHost(args).Run();
|
|
}
|
|
|
|
public static IWebHost BuildWebHost(string[] args) =>
|
|
WebHost.CreateDefaultBuilder(args)
|
|
.UseStartup<Startup>()
|
|
.Build();
|
|
}
|
|
}
|