summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/security_reports/store/modules/sast/index.js
blob: 68c81bb45096f154036c07678c400afaec9bb260 (plain)
1
2
3
4
5
6
7
8
9
10
import state from './state';
import mutations from './mutations';
import * as actions from './actions';

export default {
  namespaced: true,
  state,
  mutations,
  actions,
};