mirror of
https://github.com/HirziDevs/PteroStats
synced 2026-02-04 12:02:32 +00:00
24 lines
522 B
JavaScript
24 lines
522 B
JavaScript
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;
|