10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import { VERIFY_CONNECTION } from './verify-connection';
|
|
import { RESET_CONNECTION } from './reset-connection';
|
|
|
|
const mutations = {
|
|
verifyConnection: VERIFY_CONNECTION,
|
|
resetConnection: RESET_CONNECTION,
|
|
};
|
|
|
|
export default mutations;
|