Ejemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IEventQueue eventQueue)
        {
            var _ = eventQueue.ToString(); // need to ensure the event queue instance is created on startup....

            app.UseDeveloperExceptionPage();

            app.UseMvc();
        }