mirror of
https://github.com/bitwarden/server.git
synced 2025-06-24 12:48:48 -05:00
20 lines
459 B
C#
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();
|
|
}
|
|
}
|
|
}
|