1 2 3 4 5 6 7
sc := make(chan os.Signal, 1) signal.Notify(sc, os.Interrupt) go func(){ for sig := range sc { {{_cursor_}} } }()