Files
server/src/Notifications/Program.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
433 B
C#
Raw Normal View History

2020-01-10 08:33:13 -05:00
using Bit.Core.Utilities;
2018-08-02 12:14:33 -04:00
2018-08-16 13:45:31 -04:00
namespace Bit.Notifications;
2022-08-29 16:06:55 -04:00
2018-08-16 13:45:31 -04:00
public class Program
2018-08-02 12:14:33 -04:00
{
public static void Main(string[] args)
{
2020-01-10 08:33:13 -05:00
Host
2018-08-02 12:14:33 -04:00
.CreateDefaultBuilder(args)
.UseBitwardenSdk()
2020-01-10 08:33:13 -05:00
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
})
.AddSerilogFileLogging()
2018-08-02 12:14:33 -04:00
.Build()
.Run();
}
}