mirror of
https://github.com/bitwarden/server.git
synced 2025-04-11 08:08:14 -05:00
20 lines
464 B
C#
20 lines
464 B
C#
using Microsoft.AspNetCore;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
namespace Bit.Notifications
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
}
|