Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Safely: Do scary things safely in Go.

This is a small utility library for doing things safely.

Go Routine Wrappers

Don't let a panic in a goroutine take down your entire program.

import "github.com/Masterminds/safely"

func main() {
  safely.Go(func() { panic("Oops!") })
}