summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/reducers/index.js
blob: 4dbc9d37f0e0b3ba5834db934e041202c75e9a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";

const {
  autocomplete,
} = require("resource://devtools/client/webconsole/reducers/autocomplete.js");
const {
  filters,
} = require("resource://devtools/client/webconsole/reducers/filters.js");
const {
  messages,
} = require("resource://devtools/client/webconsole/reducers/messages.js");
const {
  prefs,
} = require("resource://devtools/client/webconsole/reducers/prefs.js");
const { ui } = require("resource://devtools/client/webconsole/reducers/ui.js");
const {
  notifications,
} = require("resource://devtools/client/webconsole/reducers/notifications.js");
const {
  history,
} = require("resource://devtools/client/webconsole/reducers/history.js");

exports.reducers = {
  autocomplete,
  filters,
  messages,
  prefs,
  ui,
  notifications,
  history,
};