From 710447cb0d6a876d07e0c9e8c3533216dce3ab3d Mon Sep 17 00:00:00 2001 From: Abhishek Jain Date: Thu, 23 Mar 2017 22:11:38 -0400 Subject: [PATCH] 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 --- constants/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/constants.go b/constants/constants.go index bb664e8..b0c81a3 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -25,7 +25,7 @@ var PowerClasses = map[string]map[string]bool{ "C": map[string]bool{ "stratos-008.cs.binghamton.edu": true, }, - "D": map[string]bool { + "D": map[string]bool{ "stratos-001.cs.binghamton.edu": true, "stratos-002.cs.binghamton.edu": true, "stratos-003.cs.binghamton.edu": true,