summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/file_templates/index.js
blob: 5f850b8b86aabea2fc80c5d4aa36b637ac8c1684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import createState from './state';

export default () => ({
  namespaced: true,
  actions,
  state: createState(),
  getters,
  mutations,
});