mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-25 19:01:06 +03:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import client from './client'
|
|
|
|
const getExportDatabase = () => client.get('/database/export')
|
|
const createLoadDatabase = (body) => client.post('/database/load', body)
|
|
|
|
export default {
|
|
getExportDatabase,
|
|
createLoadDatabase
|
|
}
|