mirror of
https://github.com/bitwarden/server.git
synced 2025-12-10 17:45:21 -06:00
21 lines
443 B
C#
21 lines
443 B
C#
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Sso;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
})
|
|
.AddSerilogFileLogging()
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|