1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-24 12:48:48 -05:00
bitwarden/src/Identity/Program.cs
2018-08-06 16:42:55 -04:00

20 lines
459 B
C#

using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Bit.Identity
{
public class Program
{
public static void Main(string[] args)
{
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
// ref: https://github.com/aspnet/KestrelHttpServer/issues/2694
.UseLibuv()
.Build()
.Run();
}
}
}