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

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