summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/file_templates/index.js
blob: dfa5ef54413240ed89c4df1c7545fb994c4fa0c6 (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,
};