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