about summary refs log tree commit diff stats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go17
1 files changed, 9 insertions, 8 deletions
diff --git a/main.go b/main.go
index a206861..5b9c2c6 100644
--- a/main.go
+++ b/main.go
@@ -10,6 +10,7 @@ import (
 	"log"
 	"os"
 	"os/exec"
+	"os/signal"
 	"strconv"
 	"strings"
 	"time"
@@ -187,12 +188,12 @@ func main() {
 	if err := client.Connect(); err != nil {
 		log.Fatalf("an error occurred while attempting to connect to %s: %s", client.Server(), err)
 	}
-	// TODO: figure out sigint handling
-	//	ctrlc := make(chan os.Signal, 1)
-	//	signal.Notify(ctrlc, os.Interrupt)
-	//	go func() {
-	//		<-ctrlc
-	//		client.Close()
-	//		os.Exit(1)
-	//	}()
+	// sigint handling
+	ctrlc := make(chan os.Signal, 1)
+	signal.Notify(ctrlc, os.Interrupt)
+	go func() {
+		<-ctrlc
+		client.Close()
+		os.Exit(1)
+	}()
 }