From fce0e19bd99a1eba6b7038e72df2d51081f21cdc Mon Sep 17 00:00:00 2001 From: Hirzi <64255651+HirziDevs@users.noreply.github.com> Date: Tue, 20 Jul 2021 19:35:27 +0700 Subject: [PATCH] v1.4.0 --- nodes.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 nodes.js diff --git a/nodes.js b/nodes.js new file mode 100644 index 0000000..c952a33 --- /dev/null +++ b/nodes.js @@ -0,0 +1,23 @@ +let nodelist = [ + { + id: 'Server ID', + name: 'Example Server 1', + nameid: 'Node1', + nodeid: '1' + }, + { + id: 'Server ID', + name: 'Example Server 2', + nameid: 'Node2', + nodeid: '2' + }, + //Add more code like bellow to the nodeslist array after comma and before ']' if you want to add more nodes + //{ + // id: 'Server ID', + // name: 'Example Server 3', + // nameid: 'Node3', + // nodeid: '1' + //}, +] + +module.exports = nodelist;