blob: 08d4325c0297e6fe4f7b9bc85250430b0dae57d9 [file] [log] [blame]
Jamie Hannaford21a3eb12014-11-03 10:34:29 +01001package nodes
2
3type Node struct {
4 Address string
5 ID int
6 Port int
7 Status Status
8 Condition string
9 Weight int
10}