flowise / packages /ui /src /api /database.js
rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
233 Bytes
import client from './client'
const getExportDatabase = () => client.get('/database/export')
const createLoadDatabase = (body) => client.post('/database/load', body)
export default {
getExportDatabase,
createLoadDatabase
}