init nodes values

This commit is contained in:
Martin Geno 2016-03-12 03:23:12 +01:00
parent e9a9b2cf54
commit d275ecf48d
1 changed files with 6 additions and 2 deletions

View File

@ -2,12 +2,13 @@ package models
import (
"encoding/json"
"github.com/ffdo/node-informant/gluon-collector/data"
"io/ioutil"
"log"
"os"
"sync"
"time"
"github.com/ffdo/node-informant/gluon-collector/data"
)
// Node struct
@ -50,7 +51,10 @@ func (nodes *Nodes) Get(nodeID string) *Node {
if node == nil {
node = &Node{
Firstseen: now,
Firstseen: now,
Nodeinfo: &data.NodeInfo{},
Statistics: &data.StatisticsStruct{},
Neighbours: &data.NeighbourStruct{},
}
nodes.List[nodeID] = node
}