mirror of
https://github.com/bitwarden/server
synced 2026-01-11 04:53:18 +00:00
22 lines
552 B
C#
22 lines
552 B
C#
using Microsoft.AspNetCore;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Bit.Core.Utilities;
|
|
using Serilog.Events;
|
|
|
|
namespace Bit.Icons
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
WebHost
|
|
.CreateDefaultBuilder(args)
|
|
.UseStartup<Startup>()
|
|
.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, e => e.Level >= LogEventLevel.Error))
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|
|
}
|