1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-27 13:05:23 +01:00
bitwarden-server/src/Events/Program.cs
2017-12-04 10:12:11 -05:00

18 lines
349 B
C#

using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Bit.Events
{
public class Program
{
public static void Main(string[] args)
{
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build()
.Run();
}
}
}