diff --git a/src/EventsProcessor/Startup.cs b/src/EventsProcessor/Startup.cs index 97e2d7d318..c1307136ae 100644 --- a/src/EventsProcessor/Startup.cs +++ b/src/EventsProcessor/Startup.cs @@ -25,7 +25,13 @@ namespace Bit.EventsProcessor public void ConfigureServices(IServiceCollection services) { + // Options services.AddOptions(); + + // Settings + var globalSettings = services.AddGlobalSettingsServices(Configuration); + + // Hosted Services services.AddHostedService(); }