()
| 92 | } |
| 93 | |
| 94 | export function getAllNetworks(){ |
| 95 | return getUri(host+`networks`) |
| 96 | .then(({ objects }) => filterTerminatedObjects(objects)) |
| 97 | } |
| 98 | export function getAllNodes(){ |
| 99 | return getUri(host+`nodes`).then(({ objects }) => filterStoppedNodes(objects)) |
| 100 | } |
nothing calls this directly
no test coverage detected