mirror of
https://github.com/bitwarden/server.git
synced 2024-12-11 15:17:44 +01:00
25 lines
684 B
C#
25 lines
684 B
C#
using Bit.Core.Utilities;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Serilog.Events;
|
|
|
|
namespace Bit.Icons
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, e => e.Level >= LogEventLevel.Error));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|
|
}
|