2021-04-29 21:17:54 +05:30
|
|
|
import * as actions from 'ee_else_ce/diffs/store/actions';
|
2021-09-04 01:27:46 +05:30
|
|
|
import * as getters from 'ee_else_ce/diffs/store/getters';
|
2021-04-29 21:17:54 +05:30
|
|
|
import createState from 'ee_else_ce/diffs/store/modules/diff_state';
|
|
|
|
import mutations from 'ee_else_ce/diffs/store/mutations';
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
export default () => ({
|
2018-11-08 19:23:39 +05:30
|
|
|
namespaced: true,
|
|
|
|
state: createState(),
|
|
|
|
getters,
|
|
|
|
actions,
|
|
|
|
mutations,
|
2018-12-05 23:21:45 +05:30
|
|
|
});
|