"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ccr = void 0; var _redux = require("redux"); var _api = require("./api"); var _auto_follow_pattern = require("./auto_follow_pattern"); var _follower_index = require("./follower_index"); var _stats = require("./stats"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const ccr = (0, _redux.combineReducers)({ autoFollowPattern: _auto_follow_pattern.reducer, followerIndex: _follower_index.reducer, api: _api.reducer, stats: _stats.reducer }); exports.ccr = ccr;