Changed the Hosts from being a slice to a map with the key as hostname and value as a struct which would be an empty struct in order to mimic a set
This commit is contained in:
parent
26c49d4098
commit
710447cb0d
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ var PowerClasses = map[string]map[string]bool{
|
||||||
"C": map[string]bool{
|
"C": map[string]bool{
|
||||||
"stratos-008.cs.binghamton.edu": true,
|
"stratos-008.cs.binghamton.edu": true,
|
||||||
},
|
},
|
||||||
"D": map[string]bool {
|
"D": map[string]bool{
|
||||||
"stratos-001.cs.binghamton.edu": true,
|
"stratos-001.cs.binghamton.edu": true,
|
||||||
"stratos-002.cs.binghamton.edu": true,
|
"stratos-002.cs.binghamton.edu": true,
|
||||||
"stratos-003.cs.binghamton.edu": true,
|
"stratos-003.cs.binghamton.edu": true,
|
||||||
|
|
Reference in a new issue