debian-mirror-gitlab/app/assets/javascripts/ide/stores/modules/pipelines/index.js
2021-03-11 19:13:27 +05:30

12 lines
236 B
JavaScript

import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import state from './state';
export default {
namespaced: true,
state: state(),
actions,
mutations,
getters,
};