Skip to content

Instantly share code, notes, and snippets.

@lisp-ceo
Created May 4, 2017 00:54
Show Gist options
  • Save lisp-ceo/439af1b9673ee080acad106f32fec8a1 to your computer and use it in GitHub Desktop.
Save lisp-ceo/439af1b9673ee080acad106f32fec8a1 to your computer and use it in GitHub Desktop.
Catching SIGTERM in Go
term := make(chan os.Signal, 1)
signal.Notify(term, os.Interrupt, syscall.SIGTERM)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment