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

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