I'm learning CQRS so I'm using MediatR I've watched videos for demos but I don't understand this line
services.AddMediatR(typeof(Startup));
Why did they add to the services container the type of "Startup"? What is exactly the type that should be added? Request Types or RequestHandler types or Startup?