mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-24 11:00:45 +03:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
import client from './client'
|
|
|
|
const getAllNodes = () => client.get('/nodes')
|
|
|
|
const getSpecificNode = (name) => client.get(`/nodes/${name}`)
|
|
|
|
export default {
|
|
getAllNodes,
|
|
getSpecificNode
|
|
}
|