// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddControllers(); Injector.AddDbContext(services, Configuration.GetConnectionString("Default")); Injector.Inject(services); Injector.AddCloudinary(services, Configuration["CLOUDINARY_URL"]); services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo() { Title = "Tour Base", Version = "v1" }); }); SettingsHolder.CloudinaryPath = Configuration["CloudinaryPath"]; }