Merge branch 'main' into feature/env-vars

This commit is contained in:
Henry
2023-12-20 01:39:45 +00:00
279 changed files with 5379 additions and 1338 deletions
+4 -1
View File
@@ -4,7 +4,10 @@ const getAllNodes = () => client.get('/nodes')
const getSpecificNode = (name) => client.get(`/nodes/${name}`)
const executeCustomFunctionNode = (body) => client.post(`/node-custom-function`, body)
export default {
getAllNodes,
getSpecificNode
getSpecificNode,
executeCustomFunctionNode
}