mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
21 lines
470 B
C#
21 lines
470 B
C#
using System;
|
|
using Microsoft.AspNetCore;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
namespace Bit.Icons
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
}
|