1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-11 21:03:47 -05:00

events processor web job project

This commit is contained in:
Kyle Spearrin
2017-12-08 15:02:54 -05:00
parent f02679f609
commit 8626d7e769
8 changed files with 261 additions and 1 deletions

View File

@ -0,0 +1,19 @@
using Microsoft.Azure.WebJobs;
namespace Bit.EventsProcessor
{
public class Program
{
private static void Main()
{
var config = new JobHostConfiguration();
if(config.IsDevelopment)
{
config.UseDevelopmentSettings();
}
var host = new JobHost(config);
host.RunAndBlock();
}
}
}