summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/terminal/index.js
blob: ef1289e1722a0f8acd1ce1ccb1ed34faa04fd192 (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 state from './state';

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