1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 09:32:48 -05:00

stub out events project

This commit is contained in:
Kyle Spearrin
2017-12-04 10:12:11 -05:00
parent 8a88a36140
commit 755c73deba
8 changed files with 148 additions and 1 deletions

17
src/Events/Program.cs Normal file
View File

@ -0,0 +1,17 @@
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();
}
}
}