rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
199 Bytes
import client from './client'
const getAllNodes = () => client.get('/nodes')
const getSpecificNode = (name) => client.get(`/nodes/${name}`)
export default {
getAllNodes,
getSpecificNode
}