File size: 233 Bytes
4114d85
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import client from './client'

const getExportDatabase = () => client.get('/database/export')
const createLoadDatabase = (body) => client.post('/database/load', body)

export default {
    getExportDatabase,
    createLoadDatabase
}