7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
import axios from '~/lib/utils/axios_utils';
|
|
|
|
export default {
|
|
getAlertManagementList({ endpoint }) {
|
|
return axios.get(endpoint);
|
|
},
|
|
};
|