summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/store/modules/index.js
blob: 56c26d1ffad9cea0a5b9c95dae109dc3079c355b (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as actions from '../actions';
import * as getters from '../getters';
import mutations from '../mutations';
import createState from './diff_state';

export default {
  state: createState(),
  getters,
  actions,
  mutations,
};