File size: 199 Bytes
4114d85
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import client from './client'

const getAllNodes = () => client.get('/nodes')

const getSpecificNode = (name) => client.get(`/nodes/${name}`)

export default {
    getAllNodes,
    getSpecificNode
}