From b4960e77ed87e301f03cbce4402fb22b74ca9b1a Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Sun, 30 Sep 2018 07:44:57 -0600 Subject: [PATCH] Move a comment --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 434e689..6ba472e 100644 --- a/main.go +++ b/main.go @@ -36,7 +36,6 @@ func main() { // run is tracking whether or not the thermostats should run run := true - // Launch the thermostat go routines sig := make(chan os.Signal) signal.Notify(sig, os.Interrupt, syscall.SIGTERM) signal.Notify(sig, os.Interrupt, syscall.SIGINT) @@ -46,6 +45,7 @@ func main() { run = false }() + // Launch the thermostat go routines var wg sync.WaitGroup for _, sensor := range config.Sensors { wg.Add(1)