mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 14:43:10 +08:00
20 lines
405 B
C#
20 lines
405 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|