12 lines
147 B
Go
12 lines
147 B
Go
package gosafe
|
|
|
|
import "context"
|
|
|
|
// Go safe goroutine.
|
|
func Go(ctx context.Context, fn func()) {
|
|
go func() {
|
|
defer Recovery(ctx)
|
|
fn()
|
|
}()
|
|
}
|